1 Star 0 Fork 0

MrCoder / openapi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
model_send_sms_request.go 4.22 KB
一键复制 编辑 原始数据 按行查看 历史
MrCoder 提交于 2023-12-22 15:27 . update
/*
Nnef_SMService
Nnef SMService Service. © 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
API version: 1.0.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package OpenAPI_Nnef_SMService
import (
"encoding/json"
"os"
)
// checks if the SendSMSRequest type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &SendSMSRequest{}
// SendSMSRequest struct for SendSMSRequest
type SendSMSRequest struct {
JsonData *SmsData `json:"jsonData,omitempty"`
BinaryPayload **os.File `json:"binaryPayload,omitempty"`
}
// NewSendSMSRequest instantiates a new SendSMSRequest 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 NewSendSMSRequest() *SendSMSRequest {
this := SendSMSRequest{}
return &this
}
// NewSendSMSRequestWithDefaults instantiates a new SendSMSRequest 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 NewSendSMSRequestWithDefaults() *SendSMSRequest {
this := SendSMSRequest{}
return &this
}
// GetJsonData returns the JsonData field value if set, zero value otherwise.
func (o *SendSMSRequest) GetJsonData() SmsData {
if o == nil || IsNil(o.JsonData) {
var ret SmsData
return ret
}
return *o.JsonData
}
// GetJsonDataOk returns a tuple with the JsonData field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *SendSMSRequest) GetJsonDataOk() (*SmsData, bool) {
if o == nil || IsNil(o.JsonData) {
return nil, false
}
return o.JsonData, true
}
// HasJsonData returns a boolean if a field has been set.
func (o *SendSMSRequest) HasJsonData() bool {
if o != nil && !IsNil(o.JsonData) {
return true
}
return false
}
// SetJsonData gets a reference to the given SmsData and assigns it to the JsonData field.
func (o *SendSMSRequest) SetJsonData(v SmsData) {
o.JsonData = &v
}
// GetBinaryPayload returns the BinaryPayload field value if set, zero value otherwise.
func (o *SendSMSRequest) GetBinaryPayload() *os.File {
if o == nil || IsNil(o.BinaryPayload) {
var ret *os.File
return ret
}
return *o.BinaryPayload
}
// GetBinaryPayloadOk returns a tuple with the BinaryPayload field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *SendSMSRequest) GetBinaryPayloadOk() (**os.File, bool) {
if o == nil || IsNil(o.BinaryPayload) {
return nil, false
}
return o.BinaryPayload, true
}
// HasBinaryPayload returns a boolean if a field has been set.
func (o *SendSMSRequest) HasBinaryPayload() bool {
if o != nil && !IsNil(o.BinaryPayload) {
return true
}
return false
}
// SetBinaryPayload gets a reference to the given *os.File and assigns it to the BinaryPayload field.
func (o *SendSMSRequest) SetBinaryPayload(v *os.File) {
o.BinaryPayload = &v
}
func (o SendSMSRequest) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o SendSMSRequest) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.JsonData) {
toSerialize["jsonData"] = o.JsonData
}
if !IsNil(o.BinaryPayload) {
toSerialize["binaryPayload"] = o.BinaryPayload
}
return toSerialize, nil
}
type NullableSendSMSRequest struct {
value *SendSMSRequest
isSet bool
}
func (v NullableSendSMSRequest) Get() *SendSMSRequest {
return v.value
}
func (v *NullableSendSMSRequest) Set(val *SendSMSRequest) {
v.value = val
v.isSet = true
}
func (v NullableSendSMSRequest) IsSet() bool {
return v.isSet
}
func (v *NullableSendSMSRequest) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableSendSMSRequest(val *SendSMSRequest) *NullableSendSMSRequest {
return &NullableSendSMSRequest{value: val, isSet: true}
}
func (v NullableSendSMSRequest) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableSendSMSRequest) 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

搜索帮助