Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.57 KB

File metadata and controls

30 lines (21 loc) · 1.57 KB

MSAnalyticsMembershipTierAmountRefundedPartitionedByDate

Properties

Name Type Description Notes
var_date object Represents the date when the amount was refunded
amount object Represents the amount refunded on that particular date

Example

from wallet.models.ms_analytics_membership_tier_amount_refunded_partitioned_by_date import MSAnalyticsMembershipTierAmountRefundedPartitionedByDate

# TODO update the JSON string below
json = "{}"
# create an instance of MSAnalyticsMembershipTierAmountRefundedPartitionedByDate from a JSON string
ms_analytics_membership_tier_amount_refunded_partitioned_by_date_instance = MSAnalyticsMembershipTierAmountRefundedPartitionedByDate.from_json(json)
# print the JSON string representation of the object
print MSAnalyticsMembershipTierAmountRefundedPartitionedByDate.to_json()

# convert the object into a dict
ms_analytics_membership_tier_amount_refunded_partitioned_by_date_dict = ms_analytics_membership_tier_amount_refunded_partitioned_by_date_instance.to_dict()
# create an instance of MSAnalyticsMembershipTierAmountRefundedPartitionedByDate from a dict
ms_analytics_membership_tier_amount_refunded_partitioned_by_date_form_dict = ms_analytics_membership_tier_amount_refunded_partitioned_by_date.from_dict(ms_analytics_membership_tier_amount_refunded_partitioned_by_date_dict)

[Back to Model list] [Back to API list] [Back to README]