1 Star 0 Fork 0

MrCoder / openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model_websock_notif_config.go 4.80 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 . update
/*
VAE_ApplicationRequirement
API for VAE Application Requirement Service © 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.1.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_VAE_ApplicationRequirement
import (
"encoding/json"
)
// checks if the WebsockNotifConfig type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &WebsockNotifConfig{}
// WebsockNotifConfig Represents the configuration information for the delivery of notifications over Websockets.
type WebsockNotifConfig struct {
// string formatted according to IETF RFC 3986 identifying a referenced resource.
WebsocketUri *string `json:"websocketUri,omitempty"`
// Set by the SCS/AS to indicate that the Websocket delivery is requested.
RequestWebsocketUri *bool `json:"requestWebsocketUri,omitempty"`
}
// NewWebsockNotifConfig instantiates a new WebsockNotifConfig 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 NewWebsockNotifConfig() *WebsockNotifConfig {
this := WebsockNotifConfig{}
return &this
}
// NewWebsockNotifConfigWithDefaults instantiates a new WebsockNotifConfig 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 NewWebsockNotifConfigWithDefaults() *WebsockNotifConfig {
this := WebsockNotifConfig{}
return &this
}
// GetWebsocketUri returns the WebsocketUri field value if set, zero value otherwise.
func (o *WebsockNotifConfig) GetWebsocketUri() string {
if o == nil || IsNil(o.WebsocketUri) {
var ret string
return ret
}
return *o.WebsocketUri
}
// GetWebsocketUriOk returns a tuple with the WebsocketUri field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *WebsockNotifConfig) GetWebsocketUriOk() (*string, bool) {
if o == nil || IsNil(o.WebsocketUri) {
return nil, false
}
return o.WebsocketUri, true
}
// HasWebsocketUri returns a boolean if a field has been set.
func (o *WebsockNotifConfig) HasWebsocketUri() bool {
if o != nil && !IsNil(o.WebsocketUri) {
return true
}
return false
}
// SetWebsocketUri gets a reference to the given string and assigns it to the WebsocketUri field.
func (o *WebsockNotifConfig) SetWebsocketUri(v string) {
o.WebsocketUri = &v
}
// GetRequestWebsocketUri returns the RequestWebsocketUri field value if set, zero value otherwise.
func (o *WebsockNotifConfig) GetRequestWebsocketUri() bool {
if o == nil || IsNil(o.RequestWebsocketUri) {
var ret bool
return ret
}
return *o.RequestWebsocketUri
}
// GetRequestWebsocketUriOk returns a tuple with the RequestWebsocketUri field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *WebsockNotifConfig) GetRequestWebsocketUriOk() (*bool, bool) {
if o == nil || IsNil(o.RequestWebsocketUri) {
return nil, false
}
return o.RequestWebsocketUri, true
}
// HasRequestWebsocketUri returns a boolean if a field has been set.
func (o *WebsockNotifConfig) HasRequestWebsocketUri() bool {
if o != nil && !IsNil(o.RequestWebsocketUri) {
return true
}
return false
}
// SetRequestWebsocketUri gets a reference to the given bool and assigns it to the RequestWebsocketUri field.
func (o *WebsockNotifConfig) SetRequestWebsocketUri(v bool) {
o.RequestWebsocketUri = &v
}
func (o WebsockNotifConfig) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o WebsockNotifConfig) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.WebsocketUri) {
toSerialize["websocketUri"] = o.WebsocketUri
}
if !IsNil(o.RequestWebsocketUri) {
toSerialize["requestWebsocketUri"] = o.RequestWebsocketUri
}
return toSerialize, nil
}
type NullableWebsockNotifConfig struct {
value *WebsockNotifConfig
isSet bool
}
func (v NullableWebsockNotifConfig) Get() *WebsockNotifConfig {
return v.value
}
func (v *NullableWebsockNotifConfig) Set(val *WebsockNotifConfig) {
v.value = val
v.isSet = true
}
func (v NullableWebsockNotifConfig) IsSet() bool {
return v.isSet
}
func (v *NullableWebsockNotifConfig) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableWebsockNotifConfig(val *WebsockNotifConfig) *NullableWebsockNotifConfig {
return &NullableWebsockNotifConfig{value: val, isSet: true}
}
func (v NullableWebsockNotifConfig) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableWebsockNotifConfig) 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

搜索帮助