Name | Type | Description | Notes |
---|---|---|---|
ClientId | string | The client ID you received when you first created the application | [readonly] |
ClientSecret | []string | The client secret(s). It is an array datatype to allow for rotation of secrets without downtime for your customers | |
RedirectUris | []string | Indicates the URI to return the user to after authorization is complete, which is the endpoint on your server to receive the authorization_code. Must be identical to the redirect URI provided in the original link. Please email me after signup and I will set both your client secret and redirect_uri (required) when you reach out. | |
Name | string | Name of your app that shows up in the Affix Connect application | |
WebhookUri | Pointer to NullableString | If enabled, webhooks will be sent to this endpoint | [optional] |
func NewClientResponse(clientId string, clientSecret []string, redirectUris []string, name string, ) *ClientResponse
NewClientResponse instantiates a new ClientResponse 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
func NewClientResponseWithDefaults() *ClientResponse
NewClientResponseWithDefaults instantiates a new ClientResponse 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
func (o *ClientResponse) GetClientId() string
GetClientId returns the ClientId field if non-nil, zero value otherwise.
func (o *ClientResponse) GetClientIdOk() (*string, bool)
GetClientIdOk returns a tuple with the ClientId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ClientResponse) SetClientId(v string)
SetClientId sets ClientId field to given value.
func (o *ClientResponse) GetClientSecret() []string
GetClientSecret returns the ClientSecret field if non-nil, zero value otherwise.
func (o *ClientResponse) GetClientSecretOk() (*[]string, bool)
GetClientSecretOk returns a tuple with the ClientSecret field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ClientResponse) SetClientSecret(v []string)
SetClientSecret sets ClientSecret field to given value.
func (o *ClientResponse) GetRedirectUris() []string
GetRedirectUris returns the RedirectUris field if non-nil, zero value otherwise.
func (o *ClientResponse) GetRedirectUrisOk() (*[]string, bool)
GetRedirectUrisOk returns a tuple with the RedirectUris field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ClientResponse) SetRedirectUris(v []string)
SetRedirectUris sets RedirectUris field to given value.
func (o *ClientResponse) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *ClientResponse) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ClientResponse) SetName(v string)
SetName sets Name field to given value.
func (o *ClientResponse) GetWebhookUri() string
GetWebhookUri returns the WebhookUri field if non-nil, zero value otherwise.
func (o *ClientResponse) GetWebhookUriOk() (*string, bool)
GetWebhookUriOk returns a tuple with the WebhookUri field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ClientResponse) SetWebhookUri(v string)
SetWebhookUri sets WebhookUri field to given value.
func (o *ClientResponse) HasWebhookUri() bool
HasWebhookUri returns a boolean if a field has been set.
func (o *ClientResponse) SetWebhookUriNil(b bool)
SetWebhookUriNil sets the value for WebhookUri to be an explicit nil
func (o *ClientResponse) UnsetWebhookUri()
UnsetWebhookUri ensures that no value is present for WebhookUri, not even an explicit nil