Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.87 KB

OfferActivityReport.md

File metadata and controls

37 lines (29 loc) · 1.87 KB

OfferActivityReport

Properties

Name Type Description Notes
id int [optional]
credential_identifier str [optional]
reported_at str [optional]
processed_at str [optional]
business_date str [optional]
type str Type value definitions: * 'redeem' - occurs when a previously issued offer is redeemed * 'expire' - occurs when a previously issued offer passes its expiration date and can no longer be used * 'issue' - occurs when an offer is issued. * 'void' - occurs when a previously issued offer is voided. * 'suspend' - occurs when a previously issued offer enters a suspended state. * 'unsuspend' - occurs when a previously issued offer enters an unsuspended state. [optional]
offer_id int [optional]
channel_id int [optional]
member MemberInfo [optional]
offer_state OfferStateInfo [optional]

Example

from sparkfly_client.models.offer_activity_report import OfferActivityReport

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

# convert the object into a dict
offer_activity_report_dict = offer_activity_report_instance.to_dict()
# create an instance of OfferActivityReport from a dict
offer_activity_report_form_dict = offer_activity_report.from_dict(offer_activity_report_dict)

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