Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.3 KB

File metadata and controls

30 lines (21 loc) · 1.3 KB

ReferralCreatedEffectProps

The referralCreated effect behaves similarly to couponCreated. If the friendProfileIntegrationId parameter is empty, the referral code can be redeemed by anyone.

Properties

Name Type Description Notes
value str The referral code provided in the session.

Example

from talon_one.models.referral_created_effect_props import ReferralCreatedEffectProps

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

# convert the object into a dict
referral_created_effect_props_dict = referral_created_effect_props_instance.to_dict()
# create an instance of ReferralCreatedEffectProps from a dict
referral_created_effect_props_from_dict = ReferralCreatedEffectProps.from_dict(referral_created_effect_props_dict)

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