You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The number of days in advance that strikethrough pricing updates should be sent.
[optional]
batch_size
int
The required size of each batch of data.
[optional] [default to 1000]
Example
fromtalon_one.models.catalogs_strikethrough_notification_policyimportCatalogsStrikethroughNotificationPolicy# TODO update the JSON string belowjson="{}"# create an instance of CatalogsStrikethroughNotificationPolicy from a JSON stringcatalogs_strikethrough_notification_policy_instance=CatalogsStrikethroughNotificationPolicy.from_json(json)
# print the JSON string representation of the objectprint(CatalogsStrikethroughNotificationPolicy.to_json())
# convert the object into a dictcatalogs_strikethrough_notification_policy_dict=catalogs_strikethrough_notification_policy_instance.to_dict()
# create an instance of CatalogsStrikethroughNotificationPolicy from a dictcatalogs_strikethrough_notification_policy_from_dict=CatalogsStrikethroughNotificationPolicy.from_dict(catalogs_strikethrough_notification_policy_dict)