1 Star 0 Fork 0

MrCoder / openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model_assurance_target.go 4.63 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 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 AssuranceTarget type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &AssuranceTarget{}
// AssuranceTarget struct for AssuranceTarget
type AssuranceTarget struct {
AssuranceTargetName *string `json:"assuranceTargetName,omitempty"`
AssuranceTargetValue *string `json:"assuranceTargetValue,omitempty"`
}
// NewAssuranceTarget instantiates a new AssuranceTarget 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 NewAssuranceTarget() *AssuranceTarget {
this := AssuranceTarget{}
return &this
}
// NewAssuranceTargetWithDefaults instantiates a new AssuranceTarget 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 NewAssuranceTargetWithDefaults() *AssuranceTarget {
this := AssuranceTarget{}
return &this
}
// GetAssuranceTargetName returns the AssuranceTargetName field value if set, zero value otherwise.
func (o *AssuranceTarget) GetAssuranceTargetName() string {
if o == nil || IsNil(o.AssuranceTargetName) {
var ret string
return ret
}
return *o.AssuranceTargetName
}
// GetAssuranceTargetNameOk returns a tuple with the AssuranceTargetName field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AssuranceTarget) GetAssuranceTargetNameOk() (*string, bool) {
if o == nil || IsNil(o.AssuranceTargetName) {
return nil, false
}
return o.AssuranceTargetName, true
}
// HasAssuranceTargetName returns a boolean if a field has been set.
func (o *AssuranceTarget) HasAssuranceTargetName() bool {
if o != nil && !IsNil(o.AssuranceTargetName) {
return true
}
return false
}
// SetAssuranceTargetName gets a reference to the given string and assigns it to the AssuranceTargetName field.
func (o *AssuranceTarget) SetAssuranceTargetName(v string) {
o.AssuranceTargetName = &v
}
// GetAssuranceTargetValue returns the AssuranceTargetValue field value if set, zero value otherwise.
func (o *AssuranceTarget) GetAssuranceTargetValue() string {
if o == nil || IsNil(o.AssuranceTargetValue) {
var ret string
return ret
}
return *o.AssuranceTargetValue
}
// GetAssuranceTargetValueOk returns a tuple with the AssuranceTargetValue field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AssuranceTarget) GetAssuranceTargetValueOk() (*string, bool) {
if o == nil || IsNil(o.AssuranceTargetValue) {
return nil, false
}
return o.AssuranceTargetValue, true
}
// HasAssuranceTargetValue returns a boolean if a field has been set.
func (o *AssuranceTarget) HasAssuranceTargetValue() bool {
if o != nil && !IsNil(o.AssuranceTargetValue) {
return true
}
return false
}
// SetAssuranceTargetValue gets a reference to the given string and assigns it to the AssuranceTargetValue field.
func (o *AssuranceTarget) SetAssuranceTargetValue(v string) {
o.AssuranceTargetValue = &v
}
func (o AssuranceTarget) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o AssuranceTarget) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.AssuranceTargetName) {
toSerialize["assuranceTargetName"] = o.AssuranceTargetName
}
if !IsNil(o.AssuranceTargetValue) {
toSerialize["assuranceTargetValue"] = o.AssuranceTargetValue
}
return toSerialize, nil
}
type NullableAssuranceTarget struct {
value *AssuranceTarget
isSet bool
}
func (v NullableAssuranceTarget) Get() *AssuranceTarget {
return v.value
}
func (v *NullableAssuranceTarget) Set(val *AssuranceTarget) {
v.value = val
v.isSet = true
}
func (v NullableAssuranceTarget) IsSet() bool {
return v.isSet
}
func (v *NullableAssuranceTarget) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableAssuranceTarget(val *AssuranceTarget) *NullableAssuranceTarget {
return &NullableAssuranceTarget{value: val, isSet: true}
}
func (v NullableAssuranceTarget) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableAssuranceTarget) 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

搜索帮助