Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.34 KB

ApiV1IntegrationAuthOauthTokenPostRequest.md

File metadata and controls

31 lines (23 loc) · 1.34 KB

ApiV1IntegrationAuthOauthTokenPostRequest

Properties

Name Type Description Notes
workspace_id str
code str
integration str
url str [optional]

Example

from infisicalapi_client.models.api_v1_integration_auth_oauth_token_post_request import ApiV1IntegrationAuthOauthTokenPostRequest

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

# convert the object into a dict
api_v1_integration_auth_oauth_token_post_request_dict = api_v1_integration_auth_oauth_token_post_request_instance.to_dict()
# create an instance of ApiV1IntegrationAuthOauthTokenPostRequest from a dict
api_v1_integration_auth_oauth_token_post_request_from_dict = ApiV1IntegrationAuthOauthTokenPostRequest.from_dict(api_v1_integration_auth_oauth_token_post_request_dict)

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