Skip to content

Latest commit

 

History

History
156 lines (83 loc) · 4.73 KB

SubdomainDefinitionResponse.md

File metadata and controls

156 lines (83 loc) · 4.73 KB

SubdomainDefinitionResponse

Properties

Name Type Description Notes
CreatedAt time.Time Creation timestamp in UTC in RFC3339 format.
CreatedBy string Identifier of the user who created the resource.
ModifiedAt time.Time Last modification timestamp in UTC.
ModifiedBy string Identifier of the user who last modified the resource.
Subdomain string The new subdomain.
Url string Login URL corresponding to the subdomain.

Methods

NewSubdomainDefinitionResponse

func NewSubdomainDefinitionResponse(createdAt time.Time, createdBy string, modifiedAt time.Time, modifiedBy string, subdomain string, url string, ) *SubdomainDefinitionResponse

NewSubdomainDefinitionResponse instantiates a new SubdomainDefinitionResponse 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

NewSubdomainDefinitionResponseWithDefaults

func NewSubdomainDefinitionResponseWithDefaults() *SubdomainDefinitionResponse

NewSubdomainDefinitionResponseWithDefaults instantiates a new SubdomainDefinitionResponse 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

GetCreatedAt

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

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

GetCreatedAtOk

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

SetCreatedAt sets CreatedAt field to given value.

GetCreatedBy

func (o *SubdomainDefinitionResponse) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise.

GetCreatedByOk

func (o *SubdomainDefinitionResponse) GetCreatedByOk() (*string, bool)

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

SetCreatedBy

func (o *SubdomainDefinitionResponse) SetCreatedBy(v string)

SetCreatedBy sets CreatedBy field to given value.

GetModifiedAt

func (o *SubdomainDefinitionResponse) GetModifiedAt() time.Time

GetModifiedAt returns the ModifiedAt field if non-nil, zero value otherwise.

GetModifiedAtOk

func (o *SubdomainDefinitionResponse) GetModifiedAtOk() (*time.Time, bool)

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

SetModifiedAt

func (o *SubdomainDefinitionResponse) SetModifiedAt(v time.Time)

SetModifiedAt sets ModifiedAt field to given value.

GetModifiedBy

func (o *SubdomainDefinitionResponse) GetModifiedBy() string

GetModifiedBy returns the ModifiedBy field if non-nil, zero value otherwise.

GetModifiedByOk

func (o *SubdomainDefinitionResponse) GetModifiedByOk() (*string, bool)

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

SetModifiedBy

func (o *SubdomainDefinitionResponse) SetModifiedBy(v string)

SetModifiedBy sets ModifiedBy field to given value.

GetSubdomain

func (o *SubdomainDefinitionResponse) GetSubdomain() string

GetSubdomain returns the Subdomain field if non-nil, zero value otherwise.

GetSubdomainOk

func (o *SubdomainDefinitionResponse) GetSubdomainOk() (*string, bool)

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

SetSubdomain

func (o *SubdomainDefinitionResponse) SetSubdomain(v string)

SetSubdomain sets Subdomain field to given value.

GetUrl

func (o *SubdomainDefinitionResponse) GetUrl() string

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

GetUrlOk

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

SetUrl sets Url field to given value.

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