Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1020 Bytes

CredentialResponse.md

File metadata and controls

29 lines (21 loc) · 1020 Bytes

CredentialResponse

Properties

Name Type Description Notes
credential Credential [optional]
errors Dict[str, str] [optional]

Example

from sparkfly_client.models.credential_response import CredentialResponse

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

# convert the object into a dict
credential_response_dict = credential_response_instance.to_dict()
# create an instance of CredentialResponse from a dict
credential_response_form_dict = credential_response.from_dict(credential_response_dict)

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