Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

File metadata and controls

33 lines (24 loc) · 1.25 KB

Meta

Properties

Name Type Description Notes
campaigns object Maps each evaluated campaign ID to a key-value list of that campaigns attributes. Campaigns without attributes will be omitted. [optional]
coupons object Maps the coupon value to a key-value list of that coupons attributes. [optional]
coupon_rejection_reason CouponRejectionReason [optional]
referral_rejection_reason ReferralRejectionReason [optional]
warnings object Contains warnings about possible misuse. [optional]

Example

from talon_one.models.meta import Meta

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

# convert the object into a dict
meta_dict = meta_instance.to_dict()
# create an instance of Meta from a dict
meta_from_dict = Meta.from_dict(meta_dict)

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