Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

File metadata and controls

31 lines (22 loc) · 1.2 KB

UpdateTeamDarApplicationRequest

Properties

Name Type Description Notes
submission_status str [optional]
approval_status str [optional]
comment str [optional]

Example

from gateway_api_sdk.models.update_team_dar_application_request import UpdateTeamDarApplicationRequest

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

# convert the object into a dict
update_team_dar_application_request_dict = update_team_dar_application_request_instance.to_dict()
# create an instance of UpdateTeamDarApplicationRequest from a dict
update_team_dar_application_request_from_dict = UpdateTeamDarApplicationRequest.from_dict(update_team_dar_application_request_dict)

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