2.7 KiB
AccessAuthorizationCreate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Name | string | ||
| IsActive | bool | ||
| Timetables | []TimetableCreate |
Methods
NewAccessAuthorizationCreate
func NewAccessAuthorizationCreate(name string, isActive bool, timetables []TimetableCreate, ) *AccessAuthorizationCreate
NewAccessAuthorizationCreate instantiates a new AccessAuthorizationCreate 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
NewAccessAuthorizationCreateWithDefaults
func NewAccessAuthorizationCreateWithDefaults() *AccessAuthorizationCreate
NewAccessAuthorizationCreateWithDefaults instantiates a new AccessAuthorizationCreate 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
GetName
func (o *AccessAuthorizationCreate) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
GetNameOk
func (o *AccessAuthorizationCreate) 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 *AccessAuthorizationCreate) SetName(v string)
SetName sets Name field to given value.
GetIsActive
func (o *AccessAuthorizationCreate) GetIsActive() bool
GetIsActive returns the IsActive field if non-nil, zero value otherwise.
GetIsActiveOk
func (o *AccessAuthorizationCreate) GetIsActiveOk() (*bool, bool)
GetIsActiveOk returns a tuple with the IsActive field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetIsActive
func (o *AccessAuthorizationCreate) SetIsActive(v bool)
SetIsActive sets IsActive field to given value.
GetTimetables
func (o *AccessAuthorizationCreate) GetTimetables() []TimetableCreate
GetTimetables returns the Timetables field if non-nil, zero value otherwise.
GetTimetablesOk
func (o *AccessAuthorizationCreate) GetTimetablesOk() (*[]TimetableCreate, bool)
GetTimetablesOk returns a tuple with the Timetables field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetTimetables
func (o *AccessAuthorizationCreate) SetTimetables(v []TimetableCreate)
SetTimetables sets Timetables field to given value.