Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 999 Bytes

File metadata and controls

29 lines (20 loc) · 999 Bytes

Authenticate400Response

Properties

Name Type Description Notes
error str

Example

from ibm_gdsc_sdk_saas.models.authenticate400_response import Authenticate400Response

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

# convert the object into a dict
authenticate400_response_dict = authenticate400_response_instance.to_dict()
# create an instance of Authenticate400Response from a dict
authenticate400_response_from_dict = Authenticate400Response.from_dict(authenticate400_response_dict)

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