| Name | Type | Description | Notes |
|---|---|---|---|
| Name | Pointer to string | Name of the course | [optional] |
| Description | Pointer to string | Description of the course | [optional] |
| Start | Pointer to string | Course start date and time, ISO Date String | [optional] |
| End | Pointer to string | Course end date and time, ISO Date String | [optional] |
| Timezone | Pointer to string | Timezone of the course | [optional] |
| Tags | Pointer to []string | Tags associated with the course | [optional] |
func NewCreateCourse() *CreateCourse
NewCreateCourse instantiates a new CreateCourse 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
func NewCreateCourseWithDefaults() *CreateCourse
NewCreateCourseWithDefaults instantiates a new CreateCourse 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
func (o *CreateCourse) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *CreateCourse) 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.
func (o *CreateCourse) SetName(v string)
SetName sets Name field to given value.
func (o *CreateCourse) HasName() bool
HasName returns a boolean if a field has been set.
func (o *CreateCourse) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *CreateCourse) GetDescriptionOk() (*string, bool)
GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateCourse) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *CreateCourse) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *CreateCourse) GetStart() string
GetStart returns the Start field if non-nil, zero value otherwise.
func (o *CreateCourse) GetStartOk() (*string, bool)
GetStartOk returns a tuple with the Start field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateCourse) SetStart(v string)
SetStart sets Start field to given value.
func (o *CreateCourse) HasStart() bool
HasStart returns a boolean if a field has been set.
func (o *CreateCourse) GetEnd() string
GetEnd returns the End field if non-nil, zero value otherwise.
func (o *CreateCourse) GetEndOk() (*string, bool)
GetEndOk returns a tuple with the End field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateCourse) SetEnd(v string)
SetEnd sets End field to given value.
func (o *CreateCourse) HasEnd() bool
HasEnd returns a boolean if a field has been set.
func (o *CreateCourse) GetTimezone() string
GetTimezone returns the Timezone field if non-nil, zero value otherwise.
func (o *CreateCourse) GetTimezoneOk() (*string, bool)
GetTimezoneOk returns a tuple with the Timezone field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateCourse) SetTimezone(v string)
SetTimezone sets Timezone field to given value.
func (o *CreateCourse) HasTimezone() bool
HasTimezone returns a boolean if a field has been set.
func (o *CreateCourse) GetTags() []string
GetTags returns the Tags field if non-nil, zero value otherwise.
func (o *CreateCourse) GetTagsOk() (*[]string, bool)
GetTagsOk returns a tuple with the Tags field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateCourse) SetTags(v []string)
SetTags sets Tags field to given value.
func (o *CreateCourse) HasTags() bool
HasTags returns a boolean if a field has been set.