1 Star 0 Fork 0

MrCoder / openapi

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
model_deterministic_comm.go 5.50 KB
Copy Edit Raw Blame History
MrCoder authored 2023-12-22 15:27 . update
/*
Provisioning MnS
OAS 3.0.1 definition of the Provisioning MnS © 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 17.6.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_ProvMnS
import (
"encoding/json"
)
// checks if the DeterministicComm type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &DeterministicComm{}
// DeterministicComm struct for DeterministicComm
type DeterministicComm struct {
ServAttrCom *ServAttrCom `json:"servAttrCom,omitempty"`
Availability *Support `json:"availability,omitempty"`
PeriodicityList []int32 `json:"periodicityList,omitempty"`
}
// NewDeterministicComm instantiates a new DeterministicComm 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 NewDeterministicComm() *DeterministicComm {
this := DeterministicComm{}
return &this
}
// NewDeterministicCommWithDefaults instantiates a new DeterministicComm 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 NewDeterministicCommWithDefaults() *DeterministicComm {
this := DeterministicComm{}
return &this
}
// GetServAttrCom returns the ServAttrCom field value if set, zero value otherwise.
func (o *DeterministicComm) GetServAttrCom() ServAttrCom {
if o == nil || IsNil(o.ServAttrCom) {
var ret ServAttrCom
return ret
}
return *o.ServAttrCom
}
// GetServAttrComOk returns a tuple with the ServAttrCom field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DeterministicComm) GetServAttrComOk() (*ServAttrCom, bool) {
if o == nil || IsNil(o.ServAttrCom) {
return nil, false
}
return o.ServAttrCom, true
}
// HasServAttrCom returns a boolean if a field has been set.
func (o *DeterministicComm) HasServAttrCom() bool {
if o != nil && !IsNil(o.ServAttrCom) {
return true
}
return false
}
// SetServAttrCom gets a reference to the given ServAttrCom and assigns it to the ServAttrCom field.
func (o *DeterministicComm) SetServAttrCom(v ServAttrCom) {
o.ServAttrCom = &v
}
// GetAvailability returns the Availability field value if set, zero value otherwise.
func (o *DeterministicComm) GetAvailability() Support {
if o == nil || IsNil(o.Availability) {
var ret Support
return ret
}
return *o.Availability
}
// GetAvailabilityOk returns a tuple with the Availability field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DeterministicComm) GetAvailabilityOk() (*Support, bool) {
if o == nil || IsNil(o.Availability) {
return nil, false
}
return o.Availability, true
}
// HasAvailability returns a boolean if a field has been set.
func (o *DeterministicComm) HasAvailability() bool {
if o != nil && !IsNil(o.Availability) {
return true
}
return false
}
// SetAvailability gets a reference to the given Support and assigns it to the Availability field.
func (o *DeterministicComm) SetAvailability(v Support) {
o.Availability = &v
}
// GetPeriodicityList returns the PeriodicityList field value if set, zero value otherwise.
func (o *DeterministicComm) GetPeriodicityList() []int32 {
if o == nil || IsNil(o.PeriodicityList) {
var ret []int32
return ret
}
return o.PeriodicityList
}
// GetPeriodicityListOk returns a tuple with the PeriodicityList field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *DeterministicComm) GetPeriodicityListOk() ([]int32, bool) {
if o == nil || IsNil(o.PeriodicityList) {
return nil, false
}
return o.PeriodicityList, true
}
// HasPeriodicityList returns a boolean if a field has been set.
func (o *DeterministicComm) HasPeriodicityList() bool {
if o != nil && !IsNil(o.PeriodicityList) {
return true
}
return false
}
// SetPeriodicityList gets a reference to the given []int32 and assigns it to the PeriodicityList field.
func (o *DeterministicComm) SetPeriodicityList(v []int32) {
o.PeriodicityList = v
}
func (o DeterministicComm) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o DeterministicComm) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.ServAttrCom) {
toSerialize["servAttrCom"] = o.ServAttrCom
}
if !IsNil(o.Availability) {
toSerialize["availability"] = o.Availability
}
if !IsNil(o.PeriodicityList) {
toSerialize["periodicityList"] = o.PeriodicityList
}
return toSerialize, nil
}
type NullableDeterministicComm struct {
value *DeterministicComm
isSet bool
}
func (v NullableDeterministicComm) Get() *DeterministicComm {
return v.value
}
func (v *NullableDeterministicComm) Set(val *DeterministicComm) {
v.value = val
v.isSet = true
}
func (v NullableDeterministicComm) IsSet() bool {
return v.isSet
}
func (v *NullableDeterministicComm) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableDeterministicComm(val *DeterministicComm) *NullableDeterministicComm {
return &NullableDeterministicComm{value: val, isSet: true}
}
func (v NullableDeterministicComm) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableDeterministicComm) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
Go
1
https://gitee.com/konglinglong/openapi.git
git@gitee.com:konglinglong/openapi.git
konglinglong
openapi
openapi
e403a3c726a4

Search