Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.35 KB

File metadata and controls

31 lines (22 loc) · 1.35 KB

TierUpgradeNotificationPolicy

Properties

Name Type Description Notes
name str Notification name.
batching_enabled bool Indicates whether batching is activated. [optional] [default to True]
batch_size int The required size of each batch of data. This value applies only when `batchingEnabled` is `true`. [optional] [default to 1000]

Example

from talon_one.models.tier_upgrade_notification_policy import TierUpgradeNotificationPolicy

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

# convert the object into a dict
tier_upgrade_notification_policy_dict = tier_upgrade_notification_policy_instance.to_dict()
# create an instance of TierUpgradeNotificationPolicy from a dict
tier_upgrade_notification_policy_from_dict = TierUpgradeNotificationPolicy.from_dict(tier_upgrade_notification_policy_dict)

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