Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.73 KB

OAuth2ClientDTO.md

File metadata and controls

108 lines (59 loc) · 2.73 KB

OAuth2ClientDTO

Properties

Name Type Description Notes
BaseURL Pointer to string [optional]
Id Pointer to string [optional]
Secret Pointer to string [optional]

Methods

NewOAuth2ClientDTO

func NewOAuth2ClientDTO() *OAuth2ClientDTO

NewOAuth2ClientDTO instantiates a new OAuth2ClientDTO object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewOAuth2ClientDTOWithDefaults

func NewOAuth2ClientDTOWithDefaults() *OAuth2ClientDTO

NewOAuth2ClientDTOWithDefaults instantiates a new OAuth2ClientDTO object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetBaseURL

func (o *OAuth2ClientDTO) GetBaseURL() string

GetBaseURL returns the BaseURL field if non-nil, zero value otherwise.

GetBaseURLOk

func (o *OAuth2ClientDTO) GetBaseURLOk() (*string, bool)

GetBaseURLOk returns a tuple with the BaseURL field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetBaseURL

func (o *OAuth2ClientDTO) SetBaseURL(v string)

SetBaseURL sets BaseURL field to given value.

HasBaseURL

func (o *OAuth2ClientDTO) HasBaseURL() bool

HasBaseURL returns a boolean if a field has been set.

GetId

func (o *OAuth2ClientDTO) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *OAuth2ClientDTO) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetId

func (o *OAuth2ClientDTO) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *OAuth2ClientDTO) HasId() bool

HasId returns a boolean if a field has been set.

GetSecret

func (o *OAuth2ClientDTO) GetSecret() string

GetSecret returns the Secret field if non-nil, zero value otherwise.

GetSecretOk

func (o *OAuth2ClientDTO) GetSecretOk() (*string, bool)

GetSecretOk returns a tuple with the Secret field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetSecret

func (o *OAuth2ClientDTO) SetSecret(v string)

SetSecret sets Secret field to given value.

HasSecret

func (o *OAuth2ClientDTO) HasSecret() bool

HasSecret returns a boolean if a field has been set.

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