Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

File metadata and controls

32 lines (23 loc) · 1.21 KB

UpdateLoyaltyProgramTier

Update a tier in a specified loyalty program.

Properties

Name Type Description Notes
id int The internal ID of the tier.
name str The name of the tier. [optional]
min_points float The minimum amount of points required to enter the tier. [optional]

Example

from talon_one.models.update_loyalty_program_tier import UpdateLoyaltyProgramTier

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

# convert the object into a dict
update_loyalty_program_tier_dict = update_loyalty_program_tier_instance.to_dict()
# create an instance of UpdateLoyaltyProgramTier from a dict
update_loyalty_program_tier_from_dict = UpdateLoyaltyProgramTier.from_dict(update_loyalty_program_tier_dict)

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