代码拉取完成,页面将自动刷新
/*
Nudm_UECM
Nudm Context Management Service. © 2023, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.2.4
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_Nudm_UECM
import (
"encoding/json"
)
// checks if the IpAddress type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &IpAddress{}
// IpAddress struct for IpAddress
type IpAddress 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"`
Ipv6Prefix *Ipv6Prefix `json:"ipv6Prefix,omitempty"`
}
// NewIpAddress instantiates a new IpAddress 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 NewIpAddress() *IpAddress {
this := IpAddress{}
return &this
}
// NewIpAddressWithDefaults instantiates a new IpAddress 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 NewIpAddressWithDefaults() *IpAddress {
this := IpAddress{}
return &this
}
// GetIpv4Addr returns the Ipv4Addr field value if set, zero value otherwise.
func (o *IpAddress) 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 *IpAddress) 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 *IpAddress) 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 *IpAddress) SetIpv4Addr(v string) {
o.Ipv4Addr = &v
}
// GetIpv6Addr returns the Ipv6Addr field value if set, zero value otherwise.
func (o *IpAddress) 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 *IpAddress) 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 *IpAddress) 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 *IpAddress) SetIpv6Addr(v Ipv6Addr) {
o.Ipv6Addr = &v
}
// GetIpv6Prefix returns the Ipv6Prefix field value if set, zero value otherwise.
func (o *IpAddress) GetIpv6Prefix() Ipv6Prefix {
if o == nil || IsNil(o.Ipv6Prefix) {
var ret Ipv6Prefix
return ret
}
return *o.Ipv6Prefix
}
// GetIpv6PrefixOk returns a tuple with the Ipv6Prefix field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *IpAddress) GetIpv6PrefixOk() (*Ipv6Prefix, bool) {
if o == nil || IsNil(o.Ipv6Prefix) {
return nil, false
}
return o.Ipv6Prefix, true
}
// HasIpv6Prefix returns a boolean if a field has been set.
func (o *IpAddress) HasIpv6Prefix() bool {
if o != nil && !IsNil(o.Ipv6Prefix) {
return true
}
return false
}
// SetIpv6Prefix gets a reference to the given Ipv6Prefix and assigns it to the Ipv6Prefix field.
func (o *IpAddress) SetIpv6Prefix(v Ipv6Prefix) {
o.Ipv6Prefix = &v
}
func (o IpAddress) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o IpAddress) 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
}
if !IsNil(o.Ipv6Prefix) {
toSerialize["ipv6Prefix"] = o.Ipv6Prefix
}
return toSerialize, nil
}
type NullableIpAddress struct {
value *IpAddress
isSet bool
}
func (v NullableIpAddress) Get() *IpAddress {
return v.value
}
func (v *NullableIpAddress) Set(val *IpAddress) {
v.value = val
v.isSet = true
}
func (v NullableIpAddress) IsSet() bool {
return v.isSet
}
func (v *NullableIpAddress) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableIpAddress(val *IpAddress) *NullableIpAddress {
return &NullableIpAddress{value: val, isSet: true}
}
func (v NullableIpAddress) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableIpAddress) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。