1 Star 0 Fork 0

MrCoder / openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model_ellipsoid_arc.go 7.68 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 . update
/*
3gpp-analyticsexposure
API for Analytics Exposure. © 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.1.2
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_AnalyticsExposure
import (
"encoding/json"
"fmt"
)
// checks if the EllipsoidArc type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &EllipsoidArc{}
// EllipsoidArc Ellipsoid Arc.
type EllipsoidArc struct {
GADShape
Point GeographicalCoordinates `json:"point"`
// Indicates value of the inner radius.
InnerRadius int32 `json:"innerRadius"`
// Indicates value of uncertainty.
UncertaintyRadius float32 `json:"uncertaintyRadius"`
// Indicates value of angle.
OffsetAngle int32 `json:"offsetAngle"`
// Indicates value of angle.
IncludedAngle int32 `json:"includedAngle"`
// Indicates value of confidence.
Confidence int32 `json:"confidence"`
}
type _EllipsoidArc EllipsoidArc
// NewEllipsoidArc instantiates a new EllipsoidArc 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 NewEllipsoidArc(point GeographicalCoordinates, innerRadius int32, uncertaintyRadius float32, offsetAngle int32, includedAngle int32, confidence int32, shape SupportedGADShapes) *EllipsoidArc {
this := EllipsoidArc{}
this.Shape = shape
this.Point = point
this.InnerRadius = innerRadius
this.UncertaintyRadius = uncertaintyRadius
this.OffsetAngle = offsetAngle
this.IncludedAngle = includedAngle
this.Confidence = confidence
return &this
}
// NewEllipsoidArcWithDefaults instantiates a new EllipsoidArc 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 NewEllipsoidArcWithDefaults() *EllipsoidArc {
this := EllipsoidArc{}
return &this
}
// GetPoint returns the Point field value
func (o *EllipsoidArc) GetPoint() GeographicalCoordinates {
if o == nil {
var ret GeographicalCoordinates
return ret
}
return o.Point
}
// GetPointOk returns a tuple with the Point field value
// and a boolean to check if the value has been set.
func (o *EllipsoidArc) GetPointOk() (*GeographicalCoordinates, bool) {
if o == nil {
return nil, false
}
return &o.Point, true
}
// SetPoint sets field value
func (o *EllipsoidArc) SetPoint(v GeographicalCoordinates) {
o.Point = v
}
// GetInnerRadius returns the InnerRadius field value
func (o *EllipsoidArc) GetInnerRadius() int32 {
if o == nil {
var ret int32
return ret
}
return o.InnerRadius
}
// GetInnerRadiusOk returns a tuple with the InnerRadius field value
// and a boolean to check if the value has been set.
func (o *EllipsoidArc) GetInnerRadiusOk() (*int32, bool) {
if o == nil {
return nil, false
}
return &o.InnerRadius, true
}
// SetInnerRadius sets field value
func (o *EllipsoidArc) SetInnerRadius(v int32) {
o.InnerRadius = v
}
// GetUncertaintyRadius returns the UncertaintyRadius field value
func (o *EllipsoidArc) GetUncertaintyRadius() float32 {
if o == nil {
var ret float32
return ret
}
return o.UncertaintyRadius
}
// GetUncertaintyRadiusOk returns a tuple with the UncertaintyRadius field value
// and a boolean to check if the value has been set.
func (o *EllipsoidArc) GetUncertaintyRadiusOk() (*float32, bool) {
if o == nil {
return nil, false
}
return &o.UncertaintyRadius, true
}
// SetUncertaintyRadius sets field value
func (o *EllipsoidArc) SetUncertaintyRadius(v float32) {
o.UncertaintyRadius = v
}
// GetOffsetAngle returns the OffsetAngle field value
func (o *EllipsoidArc) GetOffsetAngle() int32 {
if o == nil {
var ret int32
return ret
}
return o.OffsetAngle
}
// GetOffsetAngleOk returns a tuple with the OffsetAngle field value
// and a boolean to check if the value has been set.
func (o *EllipsoidArc) GetOffsetAngleOk() (*int32, bool) {
if o == nil {
return nil, false
}
return &o.OffsetAngle, true
}
// SetOffsetAngle sets field value
func (o *EllipsoidArc) SetOffsetAngle(v int32) {
o.OffsetAngle = v
}
// GetIncludedAngle returns the IncludedAngle field value
func (o *EllipsoidArc) GetIncludedAngle() int32 {
if o == nil {
var ret int32
return ret
}
return o.IncludedAngle
}
// GetIncludedAngleOk returns a tuple with the IncludedAngle field value
// and a boolean to check if the value has been set.
func (o *EllipsoidArc) GetIncludedAngleOk() (*int32, bool) {
if o == nil {
return nil, false
}
return &o.IncludedAngle, true
}
// SetIncludedAngle sets field value
func (o *EllipsoidArc) SetIncludedAngle(v int32) {
o.IncludedAngle = v
}
// GetConfidence returns the Confidence field value
func (o *EllipsoidArc) GetConfidence() int32 {
if o == nil {
var ret int32
return ret
}
return o.Confidence
}
// GetConfidenceOk returns a tuple with the Confidence field value
// and a boolean to check if the value has been set.
func (o *EllipsoidArc) GetConfidenceOk() (*int32, bool) {
if o == nil {
return nil, false
}
return &o.Confidence, true
}
// SetConfidence sets field value
func (o *EllipsoidArc) SetConfidence(v int32) {
o.Confidence = v
}
func (o EllipsoidArc) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o EllipsoidArc) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
serializedGADShape, errGADShape := json.Marshal(o.GADShape)
if errGADShape != nil {
return map[string]interface{}{}, errGADShape
}
errGADShape = json.Unmarshal([]byte(serializedGADShape), &toSerialize)
if errGADShape != nil {
return map[string]interface{}{}, errGADShape
}
toSerialize["point"] = o.Point
toSerialize["innerRadius"] = o.InnerRadius
toSerialize["uncertaintyRadius"] = o.UncertaintyRadius
toSerialize["offsetAngle"] = o.OffsetAngle
toSerialize["includedAngle"] = o.IncludedAngle
toSerialize["confidence"] = o.Confidence
return toSerialize, nil
}
func (o *EllipsoidArc) 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{
"point",
"innerRadius",
"uncertaintyRadius",
"offsetAngle",
"includedAngle",
"confidence",
"shape",
}
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)
}
}
varEllipsoidArc := _EllipsoidArc{}
err = json.Unmarshal(bytes, &varEllipsoidArc)
if err != nil {
return err
}
*o = EllipsoidArc(varEllipsoidArc)
return err
}
type NullableEllipsoidArc struct {
value *EllipsoidArc
isSet bool
}
func (v NullableEllipsoidArc) Get() *EllipsoidArc {
return v.value
}
func (v *NullableEllipsoidArc) Set(val *EllipsoidArc) {
v.value = val
v.isSet = true
}
func (v NullableEllipsoidArc) IsSet() bool {
return v.isSet
}
func (v *NullableEllipsoidArc) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableEllipsoidArc(val *EllipsoidArc) *NullableEllipsoidArc {
return &NullableEllipsoidArc{value: val, isSet: true}
}
func (v NullableEllipsoidArc) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableEllipsoidArc) 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

搜索帮助