1 Star 0 Fork 0

MrCoder/openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
model_tunnel_address.go 5.71 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 +08:00 . update
/*
3gpp-mbs-session
API for MBS Session Management. © 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.1.1
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_MBSSession
import (
"encoding/json"
"fmt"
)
// checks if the TunnelAddress type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &TunnelAddress{}
// TunnelAddress Tunnel address
type TunnelAddress struct {
// String identifying a IPv4 address formatted in the 'dotted decimal' notation as defined in RFC 1166.
Ipv4Addr *string `json:"ipv4Addr,omitempty"`
Ipv6Addr *Ipv6Addr `json:"ipv6Addr,omitempty"`
// Unsigned Integer, i.e. only value 0 and integers above 0 are permissible.
PortNumber int32 `json:"portNumber"`
}
type _TunnelAddress TunnelAddress
// NewTunnelAddress instantiates a new TunnelAddress 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 NewTunnelAddress(portNumber int32) *TunnelAddress {
this := TunnelAddress{}
return &this
}
// NewTunnelAddressWithDefaults instantiates a new TunnelAddress 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 NewTunnelAddressWithDefaults() *TunnelAddress {
this := TunnelAddress{}
return &this
}
// GetIpv4Addr returns the Ipv4Addr field value if set, zero value otherwise.
func (o *TunnelAddress) GetIpv4Addr() string {
if o == nil || IsNil(o.Ipv4Addr) {
var ret string
return ret
}
return *o.Ipv4Addr
}
// GetIpv4AddrOk returns a tuple with the Ipv4Addr field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *TunnelAddress) GetIpv4AddrOk() (*string, bool) {
if o == nil || IsNil(o.Ipv4Addr) {
return nil, false
}
return o.Ipv4Addr, true
}
// HasIpv4Addr returns a boolean if a field has been set.
func (o *TunnelAddress) HasIpv4Addr() bool {
if o != nil && !IsNil(o.Ipv4Addr) {
return true
}
return false
}
// SetIpv4Addr gets a reference to the given string and assigns it to the Ipv4Addr field.
func (o *TunnelAddress) SetIpv4Addr(v string) {
o.Ipv4Addr = &v
}
// GetIpv6Addr returns the Ipv6Addr field value if set, zero value otherwise.
func (o *TunnelAddress) GetIpv6Addr() Ipv6Addr {
if o == nil || IsNil(o.Ipv6Addr) {
var ret Ipv6Addr
return ret
}
return *o.Ipv6Addr
}
// GetIpv6AddrOk returns a tuple with the Ipv6Addr field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *TunnelAddress) GetIpv6AddrOk() (*Ipv6Addr, bool) {
if o == nil || IsNil(o.Ipv6Addr) {
return nil, false
}
return o.Ipv6Addr, true
}
// HasIpv6Addr returns a boolean if a field has been set.
func (o *TunnelAddress) HasIpv6Addr() bool {
if o != nil && !IsNil(o.Ipv6Addr) {
return true
}
return false
}
// SetIpv6Addr gets a reference to the given Ipv6Addr and assigns it to the Ipv6Addr field.
func (o *TunnelAddress) SetIpv6Addr(v Ipv6Addr) {
o.Ipv6Addr = &v
}
// GetPortNumber returns the PortNumber field value
func (o *TunnelAddress) GetPortNumber() int32 {
if o == nil {
var ret int32
return ret
}
return o.PortNumber
}
// GetPortNumberOk returns a tuple with the PortNumber field value
// and a boolean to check if the value has been set.
func (o *TunnelAddress) GetPortNumberOk() (*int32, bool) {
if o == nil {
return nil, false
}
return &o.PortNumber, true
}
// SetPortNumber sets field value
func (o *TunnelAddress) SetPortNumber(v int32) {
o.PortNumber = v
}
func (o TunnelAddress) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o TunnelAddress) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.Ipv4Addr) {
toSerialize["ipv4Addr"] = o.Ipv4Addr
}
if !IsNil(o.Ipv6Addr) {
toSerialize["ipv6Addr"] = o.Ipv6Addr
}
toSerialize["portNumber"] = o.PortNumber
return toSerialize, nil
}
func (o *TunnelAddress) 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{
"portNumber",
}
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)
}
}
varTunnelAddress := _TunnelAddress{}
err = json.Unmarshal(bytes, &varTunnelAddress)
if err != nil {
return err
}
*o = TunnelAddress(varTunnelAddress)
return err
}
type NullableTunnelAddress struct {
value *TunnelAddress
isSet bool
}
func (v NullableTunnelAddress) Get() *TunnelAddress {
return v.value
}
func (v *NullableTunnelAddress) Set(val *TunnelAddress) {
v.value = val
v.isSet = true
}
func (v NullableTunnelAddress) IsSet() bool {
return v.isSet
}
func (v *NullableTunnelAddress) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableTunnelAddress(val *TunnelAddress) *NullableTunnelAddress {
return &NullableTunnelAddress{value: val, isSet: true}
}
func (v NullableTunnelAddress) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableTunnelAddress) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/konglinglong/openapi.git
git@gitee.com:konglinglong/openapi.git
konglinglong
openapi
openapi
e403a3c726a4

搜索帮助