Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.79 KB

InvalidClaimContextError.md

File metadata and controls

31 lines (24 loc) · 1.79 KB

InvalidClaimContextError

Properties

Name Type Description Notes
name str
message str
http_status_code float
trace_id str
details List[InvalidParameterErrorDetailsInner] [optional]

Example

from affinidi_tdk_login_configuration_client.models.invalid_claim_context_error import InvalidClaimContextError

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

# convert the object into a dict
invalid_claim_context_error_dict = invalid_claim_context_error_instance.to_dict()
# create an instance of InvalidClaimContextError from a dict
invalid_claim_context_error_from_dict = InvalidClaimContextError.from_dict(invalid_claim_context_error_dict)

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