1 Star 0 Fork 0

MrCoder / openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model_uncertainty_ellipse.go 5.48 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 . update
/*
3gpp-ms-event-exposure
API for Media Streaming Event Exposure. © 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.0.1
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_MSEventExposure
import (
"encoding/json"
"fmt"
)
// checks if the UncertaintyEllipse type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &UncertaintyEllipse{}
// UncertaintyEllipse Ellipse with uncertainty.
type UncertaintyEllipse struct {
// Indicates value of uncertainty.
SemiMajor float32 `json:"semiMajor"`
// Indicates value of uncertainty.
SemiMinor float32 `json:"semiMinor"`
// Indicates value of orientation angle.
OrientationMajor int32 `json:"orientationMajor"`
}
type _UncertaintyEllipse UncertaintyEllipse
// NewUncertaintyEllipse instantiates a new UncertaintyEllipse 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 NewUncertaintyEllipse(semiMajor float32, semiMinor float32, orientationMajor int32) *UncertaintyEllipse {
this := UncertaintyEllipse{}
this.SemiMajor = semiMajor
this.SemiMinor = semiMinor
this.OrientationMajor = orientationMajor
return &this
}
// NewUncertaintyEllipseWithDefaults instantiates a new UncertaintyEllipse 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 NewUncertaintyEllipseWithDefaults() *UncertaintyEllipse {
this := UncertaintyEllipse{}
return &this
}
// GetSemiMajor returns the SemiMajor field value
func (o *UncertaintyEllipse) GetSemiMajor() float32 {
if o == nil {
var ret float32
return ret
}
return o.SemiMajor
}
// GetSemiMajorOk returns a tuple with the SemiMajor field value
// and a boolean to check if the value has been set.
func (o *UncertaintyEllipse) GetSemiMajorOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.SemiMajor, true
}
// SetSemiMajor sets field value
func (o *UncertaintyEllipse) SetSemiMajor(v float32) {
o.SemiMajor = v
}
// GetSemiMinor returns the SemiMinor field value
func (o *UncertaintyEllipse) GetSemiMinor() float32 {
if o == nil {
var ret float32
return ret
}
return o.SemiMinor
}
// GetSemiMinorOk returns a tuple with the SemiMinor field value
// and a boolean to check if the value has been set.
func (o *UncertaintyEllipse) GetSemiMinorOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.SemiMinor, true
}
// SetSemiMinor sets field value
func (o *UncertaintyEllipse) SetSemiMinor(v float32) {
o.SemiMinor = v
}
// GetOrientationMajor returns the OrientationMajor field value
func (o *UncertaintyEllipse) GetOrientationMajor() int32 {
if o == nil {
var ret int32
return ret
}
return o.OrientationMajor
}
// GetOrientationMajorOk returns a tuple with the OrientationMajor field value
// and a boolean to check if the value has been set.
func (o *UncertaintyEllipse) GetOrientationMajorOk() (*int32, bool) {
if o == nil {
return nil, false
}
return &o.OrientationMajor, true
}
// SetOrientationMajor sets field value
func (o *UncertaintyEllipse) SetOrientationMajor(v int32) {
o.OrientationMajor = v
}
func (o UncertaintyEllipse) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o UncertaintyEllipse) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
toSerialize["semiMajor"] = o.SemiMajor
toSerialize["semiMinor"] = o.SemiMinor
toSerialize["orientationMajor"] = o.OrientationMajor
return toSerialize, nil
}
func (o *UncertaintyEllipse) UnmarshalJSON(bytes []byte) (err error) {
// This validates that all required properties are included in the JSON object
// by unmarshalling the object into a generic map with string keys and checking
// that every required field exists as a key in the generic map.
requiredProperties := []string{
"semiMajor",
"semiMinor",
"orientationMajor",
}
allProperties := make(map[string]interface{})
err = json.Unmarshal(bytes, &allProperties)
if err != nil {
return err
}
for _, requiredProperty := range requiredProperties {
if _, exists := allProperties[requiredProperty]; !exists {
return fmt.Errorf("no value given for required property %v", requiredProperty)
}
}
varUncertaintyEllipse := _UncertaintyEllipse{}
err = json.Unmarshal(bytes, &varUncertaintyEllipse)
if err != nil {
return err
}
*o = UncertaintyEllipse(varUncertaintyEllipse)
return err
}
type NullableUncertaintyEllipse struct {
value *UncertaintyEllipse
isSet bool
}
func (v NullableUncertaintyEllipse) Get() *UncertaintyEllipse {
return v.value
}
func (v *NullableUncertaintyEllipse) Set(val *UncertaintyEllipse) {
v.value = val
v.isSet = true
}
func (v NullableUncertaintyEllipse) IsSet() bool {
return v.isSet
}
func (v *NullableUncertaintyEllipse) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableUncertaintyEllipse(val *UncertaintyEllipse) *NullableUncertaintyEllipse {
return &NullableUncertaintyEllipse{value: val, isSet: true}
}
func (v NullableUncertaintyEllipse) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableUncertaintyEllipse) 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

搜索帮助