Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 915 Bytes

File metadata and controls

29 lines (20 loc) · 915 Bytes

RevokeBody

Properties

Name Type Description Notes
refresh_token str The refresh token to revoke (falls back to refresh_token cookie if omitted) [optional]

Example

from revengai.models.revoke_body import RevokeBody

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

# convert the object into a dict
revoke_body_dict = revoke_body_instance.to_dict()
# create an instance of RevokeBody from a dict
revoke_body_from_dict = RevokeBody.from_dict(revoke_body_dict)

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