Skip to content

Latest commit

 

History

History
161 lines (86 loc) · 4.75 KB

File metadata and controls

161 lines (86 loc) · 4.75 KB

ObjectStorageAccessKeyResponse

Properties

Name Type Description Notes
AccessKey string
CreatedAt time.Time
Description Pointer to map[string]interface{} [optional]
Id int32
Region ObjectStorageRegionsEnum
UserId int32

Methods

NewObjectStorageAccessKeyResponse

func NewObjectStorageAccessKeyResponse(accessKey string, createdAt time.Time, id int32, region ObjectStorageRegionsEnum, userId int32, ) *ObjectStorageAccessKeyResponse

NewObjectStorageAccessKeyResponse instantiates a new ObjectStorageAccessKeyResponse 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

NewObjectStorageAccessKeyResponseWithDefaults

func NewObjectStorageAccessKeyResponseWithDefaults() *ObjectStorageAccessKeyResponse

NewObjectStorageAccessKeyResponseWithDefaults instantiates a new ObjectStorageAccessKeyResponse 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

GetAccessKey

func (o *ObjectStorageAccessKeyResponse) GetAccessKey() string

GetAccessKey returns the AccessKey field if non-nil, zero value otherwise.

GetAccessKeyOk

func (o *ObjectStorageAccessKeyResponse) GetAccessKeyOk() (*string, bool)

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

SetAccessKey

func (o *ObjectStorageAccessKeyResponse) SetAccessKey(v string)

SetAccessKey sets AccessKey field to given value.

GetCreatedAt

func (o *ObjectStorageAccessKeyResponse) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.

GetCreatedAtOk

func (o *ObjectStorageAccessKeyResponse) GetCreatedAtOk() (*time.Time, bool)

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

SetCreatedAt

func (o *ObjectStorageAccessKeyResponse) SetCreatedAt(v time.Time)

SetCreatedAt sets CreatedAt field to given value.

GetDescription

func (o *ObjectStorageAccessKeyResponse) GetDescription() map[string]interface{}

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *ObjectStorageAccessKeyResponse) GetDescriptionOk() (*map[string]interface{}, 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.

SetDescription

func (o *ObjectStorageAccessKeyResponse) SetDescription(v map[string]interface{})

SetDescription sets Description field to given value.

HasDescription

func (o *ObjectStorageAccessKeyResponse) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetId

func (o *ObjectStorageAccessKeyResponse) GetId() int32

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

GetIdOk

func (o *ObjectStorageAccessKeyResponse) GetIdOk() (*int32, 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 *ObjectStorageAccessKeyResponse) SetId(v int32)

SetId sets Id field to given value.

GetRegion

func (o *ObjectStorageAccessKeyResponse) GetRegion() ObjectStorageRegionsEnum

GetRegion returns the Region field if non-nil, zero value otherwise.

GetRegionOk

func (o *ObjectStorageAccessKeyResponse) GetRegionOk() (*ObjectStorageRegionsEnum, bool)

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

SetRegion

func (o *ObjectStorageAccessKeyResponse) SetRegion(v ObjectStorageRegionsEnum)

SetRegion sets Region field to given value.

GetUserId

func (o *ObjectStorageAccessKeyResponse) GetUserId() int32

GetUserId returns the UserId field if non-nil, zero value otherwise.

GetUserIdOk

func (o *ObjectStorageAccessKeyResponse) GetUserIdOk() (*int32, bool)

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

SetUserId

func (o *ObjectStorageAccessKeyResponse) SetUserId(v int32)

SetUserId sets UserId field to given value.

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