Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 923 Bytes

OfferChannels.md

File metadata and controls

29 lines (21 loc) · 923 Bytes

OfferChannels

Properties

Name Type Description Notes
channel_ids List[int] [optional]
id int [optional]

Example

from sparkfly_client.models.offer_channels import OfferChannels

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

# convert the object into a dict
offer_channels_dict = offer_channels_instance.to_dict()
# create an instance of OfferChannels from a dict
offer_channels_form_dict = offer_channels.from_dict(offer_channels_dict)

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