Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

RefreshTokenRequest

Properties

Name Type Description Notes
client_id str The client ID, a unique identifier to distinguish Cobo Portal Apps. You can get the client ID by retrieving the manifest file after publishing the app. [optional]
grant_type str The OAuth grant type. Set the value as `refresh_token`. [optional]
refresh_token str The Refresh Token of the current Org Access Token. [optional]

Example

from cobo_waas2.models.refresh_token_request import RefreshTokenRequest

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

# convert the object into a dict
refresh_token_request_dict = refresh_token_request_instance.to_dict()
# create an instance of RefreshTokenRequest from a dict
refresh_token_request_from_dict = RefreshTokenRequest.from_dict(refresh_token_request_dict)

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