Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.08 KB

GameMediaInfoBroadcastsInner.md

File metadata and controls

29 lines (21 loc) · 1.08 KB

GameMediaInfoBroadcastsInner

Properties

Name Type Description Notes
broadcast_name str
broadcast_type str

Example

from cbbd.models.game_media_info_broadcasts_inner import GameMediaInfoBroadcastsInner

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

# convert the object into a dict
game_media_info_broadcasts_inner_dict = game_media_info_broadcasts_inner_instance.to_dict()
# create an instance of GameMediaInfoBroadcastsInner from a dict
game_media_info_broadcasts_inner_from_dict = GameMediaInfoBroadcastsInner.from_dict(game_media_info_broadcasts_inner_dict)

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