Skip to content

Latest commit

 

History

History
212 lines (115 loc) · 4.88 KB

CdnDTO.md

File metadata and controls

212 lines (115 loc) · 4.88 KB

CdnDTO

Properties

Name Type Description Notes
Created Pointer to string [optional]
Updated Pointer to string [optional]
Id Pointer to string [optional]
Label Pointer to string [optional]
Name Pointer to string [optional]
Url Pointer to string [optional]
Certificate Pointer to CertificateDTO [optional]

Methods

NewCdnDTO

func NewCdnDTO() *CdnDTO

NewCdnDTO instantiates a new CdnDTO 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

NewCdnDTOWithDefaults

func NewCdnDTOWithDefaults() *CdnDTO

NewCdnDTOWithDefaults instantiates a new CdnDTO 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

GetCreated

func (o *CdnDTO) GetCreated() string

GetCreated returns the Created field if non-nil, zero value otherwise.

GetCreatedOk

func (o *CdnDTO) GetCreatedOk() (*string, bool)

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

SetCreated

func (o *CdnDTO) SetCreated(v string)

SetCreated sets Created field to given value.

HasCreated

func (o *CdnDTO) HasCreated() bool

HasCreated returns a boolean if a field has been set.

GetUpdated

func (o *CdnDTO) GetUpdated() string

GetUpdated returns the Updated field if non-nil, zero value otherwise.

GetUpdatedOk

func (o *CdnDTO) GetUpdatedOk() (*string, bool)

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

SetUpdated

func (o *CdnDTO) SetUpdated(v string)

SetUpdated sets Updated field to given value.

HasUpdated

func (o *CdnDTO) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

GetId

func (o *CdnDTO) GetId() string

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

GetIdOk

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

SetId sets Id field to given value.

HasId

func (o *CdnDTO) HasId() bool

HasId returns a boolean if a field has been set.

GetLabel

func (o *CdnDTO) GetLabel() string

GetLabel returns the Label field if non-nil, zero value otherwise.

GetLabelOk

func (o *CdnDTO) GetLabelOk() (*string, bool)

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

SetLabel

func (o *CdnDTO) SetLabel(v string)

SetLabel sets Label field to given value.

HasLabel

func (o *CdnDTO) HasLabel() bool

HasLabel returns a boolean if a field has been set.

GetName

func (o *CdnDTO) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *CdnDTO) HasName() bool

HasName returns a boolean if a field has been set.

GetUrl

func (o *CdnDTO) GetUrl() string

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

GetUrlOk

func (o *CdnDTO) 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 *CdnDTO) SetUrl(v string)

SetUrl sets Url field to given value.

HasUrl

func (o *CdnDTO) HasUrl() bool

HasUrl returns a boolean if a field has been set.

GetCertificate

func (o *CdnDTO) GetCertificate() CertificateDTO

GetCertificate returns the Certificate field if non-nil, zero value otherwise.

GetCertificateOk

func (o *CdnDTO) GetCertificateOk() (*CertificateDTO, bool)

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

SetCertificate

func (o *CdnDTO) SetCertificate(v CertificateDTO)

SetCertificate sets Certificate field to given value.

HasCertificate

func (o *CdnDTO) HasCertificate() bool

HasCertificate returns a boolean if a field has been set.

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