Skip to content

Latest commit

 

History

History
212 lines (115 loc) · 5.19 KB

File metadata and controls

212 lines (115 loc) · 5.19 KB

RepositoryXO

Properties

Name Type Description Notes
Attributes Pointer to map[string]map[string]interface{} [optional]
Format Pointer to string [optional]
Name Pointer to string [optional]
Online Pointer to bool Whether this repository accepts incoming requests [optional]
Size Pointer to int64 Size of the repository in bytes [optional]
Type Pointer to string [optional]
Url Pointer to string [optional]

Methods

NewRepositoryXO

func NewRepositoryXO() *RepositoryXO

NewRepositoryXO instantiates a new RepositoryXO 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

NewRepositoryXOWithDefaults

func NewRepositoryXOWithDefaults() *RepositoryXO

NewRepositoryXOWithDefaults instantiates a new RepositoryXO 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

GetAttributes

func (o *RepositoryXO) GetAttributes() map[string]map[string]interface{}

GetAttributes returns the Attributes field if non-nil, zero value otherwise.

GetAttributesOk

func (o *RepositoryXO) GetAttributesOk() (*map[string]map[string]interface{}, bool)

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

SetAttributes

func (o *RepositoryXO) SetAttributes(v map[string]map[string]interface{})

SetAttributes sets Attributes field to given value.

HasAttributes

func (o *RepositoryXO) HasAttributes() bool

HasAttributes returns a boolean if a field has been set.

GetFormat

func (o *RepositoryXO) GetFormat() string

GetFormat returns the Format field if non-nil, zero value otherwise.

GetFormatOk

func (o *RepositoryXO) GetFormatOk() (*string, bool)

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

SetFormat

func (o *RepositoryXO) SetFormat(v string)

SetFormat sets Format field to given value.

HasFormat

func (o *RepositoryXO) HasFormat() bool

HasFormat returns a boolean if a field has been set.

GetName

func (o *RepositoryXO) GetName() string

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

GetNameOk

func (o *RepositoryXO) 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 *RepositoryXO) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *RepositoryXO) HasName() bool

HasName returns a boolean if a field has been set.

GetOnline

func (o *RepositoryXO) GetOnline() bool

GetOnline returns the Online field if non-nil, zero value otherwise.

GetOnlineOk

func (o *RepositoryXO) GetOnlineOk() (*bool, bool)

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

SetOnline

func (o *RepositoryXO) SetOnline(v bool)

SetOnline sets Online field to given value.

HasOnline

func (o *RepositoryXO) HasOnline() bool

HasOnline returns a boolean if a field has been set.

GetSize

func (o *RepositoryXO) GetSize() int64

GetSize returns the Size field if non-nil, zero value otherwise.

GetSizeOk

func (o *RepositoryXO) GetSizeOk() (*int64, bool)

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

SetSize

func (o *RepositoryXO) SetSize(v int64)

SetSize sets Size field to given value.

HasSize

func (o *RepositoryXO) HasSize() bool

HasSize returns a boolean if a field has been set.

GetType

func (o *RepositoryXO) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *RepositoryXO) GetTypeOk() (*string, bool)

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

SetType

func (o *RepositoryXO) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *RepositoryXO) HasType() bool

HasType returns a boolean if a field has been set.

GetUrl

func (o *RepositoryXO) GetUrl() string

GetUrl returns the Url field if non-nil, zero value otherwise.

GetUrlOk

func (o *RepositoryXO) GetUrlOk() (*string, bool)

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

SetUrl

func (o *RepositoryXO) SetUrl(v string)

SetUrl sets Url field to given value.

HasUrl

func (o *RepositoryXO) HasUrl() bool

HasUrl returns a boolean if a field has been set.

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