Skip to content

Latest commit

 

History

History
264 lines (143 loc) · 7.11 KB

File metadata and controls

264 lines (143 loc) · 7.11 KB

Bundle

Properties

Name Type Description Notes
BundleId Pointer to string The ID of the bundle. [optional] [readonly]
Name Pointer to string The name of the bundle. [optional]
Description Pointer to string The description of the bundle. [optional]
CreatedAt Pointer to time.Time The creation timestamp of the bundle, in ISO 8601 format [optional] [readonly]
UpdatedAt Pointer to time.Time The last updated timestamp of the bundle, in ISO 8601 format [optional] [readonly]
AdminOwnerId Pointer to string The ID of the owner of the bundle. [optional]
TotalNumItems Pointer to int32 The total number of items in the bundle. [optional] [readonly]
TotalNumResources Pointer to int32 The total number of resources in the bundle. [optional] [readonly]
TotalNumGroups Pointer to int32 The total number of groups in the bundle. [optional] [readonly]

Methods

NewBundle

func NewBundle() *Bundle

NewBundle instantiates a new Bundle 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

NewBundleWithDefaults

func NewBundleWithDefaults() *Bundle

NewBundleWithDefaults instantiates a new Bundle 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

GetBundleId

func (o *Bundle) GetBundleId() string

GetBundleId returns the BundleId field if non-nil, zero value otherwise.

GetBundleIdOk

func (o *Bundle) GetBundleIdOk() (*string, bool)

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

SetBundleId

func (o *Bundle) SetBundleId(v string)

SetBundleId sets BundleId field to given value.

HasBundleId

func (o *Bundle) HasBundleId() bool

HasBundleId returns a boolean if a field has been set.

GetName

func (o *Bundle) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *Bundle) 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.

SetName

func (o *Bundle) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *Bundle) HasName() bool

HasName returns a boolean if a field has been set.

GetDescription

func (o *Bundle) GetDescription() string

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

GetDescriptionOk

func (o *Bundle) 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.

SetDescription

func (o *Bundle) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *Bundle) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetCreatedAt

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

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

GetCreatedAtOk

func (o *Bundle) 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 *Bundle) SetCreatedAt(v time.Time)

SetCreatedAt sets CreatedAt field to given value.

HasCreatedAt

func (o *Bundle) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

GetUpdatedAt

func (o *Bundle) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field if non-nil, zero value otherwise.

GetUpdatedAtOk

func (o *Bundle) GetUpdatedAtOk() (*time.Time, bool)

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

SetUpdatedAt

func (o *Bundle) SetUpdatedAt(v time.Time)

SetUpdatedAt sets UpdatedAt field to given value.

HasUpdatedAt

func (o *Bundle) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

GetAdminOwnerId

func (o *Bundle) GetAdminOwnerId() string

GetAdminOwnerId returns the AdminOwnerId field if non-nil, zero value otherwise.

GetAdminOwnerIdOk

func (o *Bundle) GetAdminOwnerIdOk() (*string, bool)

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

SetAdminOwnerId

func (o *Bundle) SetAdminOwnerId(v string)

SetAdminOwnerId sets AdminOwnerId field to given value.

HasAdminOwnerId

func (o *Bundle) HasAdminOwnerId() bool

HasAdminOwnerId returns a boolean if a field has been set.

GetTotalNumItems

func (o *Bundle) GetTotalNumItems() int32

GetTotalNumItems returns the TotalNumItems field if non-nil, zero value otherwise.

GetTotalNumItemsOk

func (o *Bundle) GetTotalNumItemsOk() (*int32, bool)

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

SetTotalNumItems

func (o *Bundle) SetTotalNumItems(v int32)

SetTotalNumItems sets TotalNumItems field to given value.

HasTotalNumItems

func (o *Bundle) HasTotalNumItems() bool

HasTotalNumItems returns a boolean if a field has been set.

GetTotalNumResources

func (o *Bundle) GetTotalNumResources() int32

GetTotalNumResources returns the TotalNumResources field if non-nil, zero value otherwise.

GetTotalNumResourcesOk

func (o *Bundle) GetTotalNumResourcesOk() (*int32, bool)

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

SetTotalNumResources

func (o *Bundle) SetTotalNumResources(v int32)

SetTotalNumResources sets TotalNumResources field to given value.

HasTotalNumResources

func (o *Bundle) HasTotalNumResources() bool

HasTotalNumResources returns a boolean if a field has been set.

GetTotalNumGroups

func (o *Bundle) GetTotalNumGroups() int32

GetTotalNumGroups returns the TotalNumGroups field if non-nil, zero value otherwise.

GetTotalNumGroupsOk

func (o *Bundle) GetTotalNumGroupsOk() (*int32, bool)

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

SetTotalNumGroups

func (o *Bundle) SetTotalNumGroups(v int32)

SetTotalNumGroups sets TotalNumGroups field to given value.

HasTotalNumGroups

func (o *Bundle) HasTotalNumGroups() bool

HasTotalNumGroups returns a boolean if a field has been set.

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