Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 1.92 KB

Date.md

File metadata and controls

72 lines (39 loc) · 1.92 KB

Date

Properties

Name Type Description Notes
CreatedAt string UTC creation datetime (ISO 8601 date format)
UpdatedAt string UTC update datetime (ISO 8601 date format)

Methods

NewDate

func NewDate(createdAt string, updatedAt string, ) *Date

NewDate instantiates a new Date 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

NewDateWithDefaults

func NewDateWithDefaults() *Date

NewDateWithDefaults instantiates a new Date 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 *Date) GetCreatedAt() string

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

GetCreatedAtOk

func (o *Date) GetCreatedAtOk() (*string, 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 *Date) SetCreatedAt(v string)

SetCreatedAt sets CreatedAt field to given value.

GetUpdatedAt

func (o *Date) GetUpdatedAt() string

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

GetUpdatedAtOk

func (o *Date) GetUpdatedAtOk() (*string, 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 *Date) SetUpdatedAt(v string)

SetUpdatedAt sets UpdatedAt field to given value.

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