Skip to content

Latest commit

 

History

History
150 lines (81 loc) · 4.34 KB

File metadata and controls

150 lines (81 loc) · 4.34 KB

CourseLocationWithIncludes

Properties

Name Type Description Notes
Id int32 Unique identifier of the course location [readonly]
Name string Name of the location where the course is held.
UpdatedAt time.Time Timestamp of last update. [readonly]
CreatedAt time.Time Timestamp of creation. [readonly]
Address Pointer to NullableAddress [optional]

Methods

NewCourseLocationWithIncludes

func NewCourseLocationWithIncludes(id int32, name string, updatedAt time.Time, createdAt time.Time, ) *CourseLocationWithIncludes

NewCourseLocationWithIncludes instantiates a new CourseLocationWithIncludes 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

NewCourseLocationWithIncludesWithDefaults

func NewCourseLocationWithIncludesWithDefaults() *CourseLocationWithIncludes

NewCourseLocationWithIncludesWithDefaults instantiates a new CourseLocationWithIncludes 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

GetId

func (o *CourseLocationWithIncludes) GetId() int32

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

GetIdOk

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

SetId sets Id field to given value.

GetName

func (o *CourseLocationWithIncludes) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetUpdatedAt

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

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

GetUpdatedAtOk

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

SetUpdatedAt sets UpdatedAt field to given value.

GetCreatedAt

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

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

GetCreatedAtOk

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

SetCreatedAt sets CreatedAt field to given value.

GetAddress

func (o *CourseLocationWithIncludes) GetAddress() Address

GetAddress returns the Address field if non-nil, zero value otherwise.

GetAddressOk

func (o *CourseLocationWithIncludes) GetAddressOk() (*Address, bool)

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

SetAddress

func (o *CourseLocationWithIncludes) SetAddress(v Address)

SetAddress sets Address field to given value.

HasAddress

func (o *CourseLocationWithIncludes) HasAddress() bool

HasAddress returns a boolean if a field has been set.

SetAddressNil

func (o *CourseLocationWithIncludes) SetAddressNil(b bool)

SetAddressNil sets the value for Address to be an explicit nil

UnsetAddress

func (o *CourseLocationWithIncludes) UnsetAddress()

UnsetAddress ensures that no value is present for Address, not even an explicit nil

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