Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 1.65 KB

CampaignInput.md

File metadata and controls

44 lines (36 loc) · 1.65 KB

CampaignInput

Properties

Name Type Description Notes
offer_id int [optional]
code_ref str [optional]
code_count str [optional]
external_id str [optional]
pos_offer_code str [optional]
channel_name str [optional]
stop_display_at str [optional]
funding_source str [optional]
start_display_at str [optional]
eligible_store_numbers List[int] [optional]
description_template_id str [optional]
generate_reusable_codes bool [optional]
eligible_storelist_numbers List[int] [optional]
landing_page_image_template_id str [optional]
terms_and_conditions_template_id str [optional]
security str [optional]
allow_return_later bool [optional]

Example

from sparkfly_client.models.campaign_input import CampaignInput

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

# convert the object into a dict
campaign_input_dict = campaign_input_instance.to_dict()
# create an instance of CampaignInput from a dict
campaign_input_form_dict = campaign_input.from_dict(campaign_input_dict)

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