Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 976 Bytes

SignJwtToken.md

File metadata and controls

30 lines (22 loc) · 976 Bytes

SignJwtToken

DTO contains parts of JWT to be signed

Properties

Name Type Description Notes
header object
payload object

Example

from affinidi_tdk_wallets_client.models.sign_jwt_token import SignJwtToken

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

# convert the object into a dict
sign_jwt_token_dict = sign_jwt_token_instance.to_dict()
# create an instance of SignJwtToken from a dict
sign_jwt_token_from_dict = SignJwtToken.from_dict(sign_jwt_token_dict)

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