Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Latest commit

 

History

History
32 lines (24 loc) · 1.18 KB

GitTokenRequest.md

File metadata and controls

32 lines (24 loc) · 1.18 KB

GitTokenRequest

Properties

Name Type Description Notes
name str
description str [optional]
type GitProviderEnum
token str The token from your git provider side
workspace str Mandatory only for BITBUCKET git provider, to allow us to fetch repositories at creation/edition of a service [optional]

Example

from qovery.models.git_token_request import GitTokenRequest

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

# convert the object into a dict
git_token_request_dict = git_token_request_instance.to_dict()
# create an instance of GitTokenRequest from a dict
git_token_request_form_dict = git_token_request.from_dict(git_token_request_dict)

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