| Name | Type | Description | Notes |
|---|---|---|---|
| Kind | Pointer to string | The kind of SDK key. Can be either "sdk" (server-side) or "mobile" (mobile). Defaults to "sdk" when not explicitly defined. | [optional] [default to "sdk"] |
| Key | string | The user-defined key of the SDK key. | |
| Name | string | The human-readable name of the SDK key. | |
| Description | Pointer to string | The optional description of the SDK key. | [optional] |
| Expiry | Pointer to int64 | [optional] |
func NewSdkKeyPost(key string, name string, ) *SdkKeyPost
NewSdkKeyPost instantiates a new SdkKeyPost 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 NewSdkKeyPostWithDefaults() *SdkKeyPost
NewSdkKeyPostWithDefaults instantiates a new SdkKeyPost 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 *SdkKeyPost) GetKind() string
GetKind returns the Kind field if non-nil, zero value otherwise.
func (o *SdkKeyPost) GetKindOk() (*string, bool)
GetKindOk returns a tuple with the Kind field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SdkKeyPost) SetKind(v string)
SetKind sets Kind field to given value.
func (o *SdkKeyPost) HasKind() bool
HasKind returns a boolean if a field has been set.
func (o *SdkKeyPost) GetKey() string
GetKey returns the Key field if non-nil, zero value otherwise.
func (o *SdkKeyPost) GetKeyOk() (*string, bool)
GetKeyOk returns a tuple with the Key field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SdkKeyPost) SetKey(v string)
SetKey sets Key field to given value.
func (o *SdkKeyPost) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *SdkKeyPost) 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 *SdkKeyPost) SetName(v string)
SetName sets Name field to given value.
func (o *SdkKeyPost) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *SdkKeyPost) GetDescriptionOk() (*string, bool)
GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SdkKeyPost) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *SdkKeyPost) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *SdkKeyPost) GetExpiry() int64
GetExpiry returns the Expiry field if non-nil, zero value otherwise.
func (o *SdkKeyPost) GetExpiryOk() (*int64, bool)
GetExpiryOk returns a tuple with the Expiry field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SdkKeyPost) SetExpiry(v int64)
SetExpiry sets Expiry field to given value.
func (o *SdkKeyPost) HasExpiry() bool
HasExpiry returns a boolean if a field has been set.