Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

MicrosoftGraphSubmission.md

File metadata and controls

31 lines (22 loc) · 1.11 KB

MicrosoftGraphSubmission

A Microsoft Teams submission

Properties

Name Type Description Notes
id str Identifier of the submission assigned by Microsoft Teams
state str State of the submission

Example

from flat_api.models.microsoft_graph_submission import MicrosoftGraphSubmission

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

# convert the object into a dict
microsoft_graph_submission_dict = microsoft_graph_submission_instance.to_dict()
# create an instance of MicrosoftGraphSubmission from a dict
microsoft_graph_submission_form_dict = microsoft_graph_submission.from_dict(microsoft_graph_submission_dict)

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