Documentation
¶
Overview ¶
This file is auto-generated, don't edit it. Thanks. *
*
Index ¶
- type Client
- func (client *Client) GetEndpoint(productId *string, regionId *string, endpointRule *string, network *string, ...) (_result *string, _err error)
- func (client *Client) GetMessageStatus(request *GetMessageStatusRequest) (_result *GetMessageStatusResponse, _err error)
- func (client *Client) GetMessageStatusWithOptions(request *GetMessageStatusRequest, headers map[string]*string, ...) (_result *GetMessageStatusResponse, _err error)
- func (client *Client) Init(config *openapi.Config) (_err error)
- func (client *Client) SendBatchMessage(request *SendBatchMessageRequest) (_result *SendBatchMessageResponse, _err error)
- func (client *Client) SendBatchMessageWithOptions(request *SendBatchMessageRequest, headers map[string]*string, ...) (_result *SendBatchMessageResponse, _err error)
- type GetMessageStatusRequest
- type GetMessageStatusResponse
- func (s GetMessageStatusResponse) GoString() string
- func (s *GetMessageStatusResponse) SetBody(v *GetMessageStatusResponseBody) *GetMessageStatusResponse
- func (s *GetMessageStatusResponse) SetHeaders(v map[string]*string) *GetMessageStatusResponse
- func (s *GetMessageStatusResponse) SetStatusCode(v int32) *GetMessageStatusResponse
- func (s GetMessageStatusResponse) String() string
- type GetMessageStatusResponseBody
- func (s GetMessageStatusResponseBody) GoString() string
- func (s *GetMessageStatusResponseBody) SetCode(v string) *GetMessageStatusResponseBody
- func (s *GetMessageStatusResponseBody) SetData(v *GetMessageStatusResponseBodyData) *GetMessageStatusResponseBody
- func (s *GetMessageStatusResponseBody) SetMessage(v string) *GetMessageStatusResponseBody
- func (s *GetMessageStatusResponseBody) SetRequestId(v string) *GetMessageStatusResponseBody
- func (s GetMessageStatusResponseBody) String() string
- type GetMessageStatusResponseBodyData
- func (s GetMessageStatusResponseBodyData) GoString() string
- func (s *GetMessageStatusResponseBodyData) SetMobile(v string) *GetMessageStatusResponseBodyData
- func (s *GetMessageStatusResponseBodyData) SetRequestId(v string) *GetMessageStatusResponseBodyData
- func (s *GetMessageStatusResponseBodyData) SetStatus(v string) *GetMessageStatusResponseBodyData
- func (s GetMessageStatusResponseBodyData) String() string
- type SendBatchMessageRequest
- func (s SendBatchMessageRequest) GoString() string
- func (s *SendBatchMessageRequest) SetBatchFlag(v string) *SendBatchMessageRequest
- func (s *SendBatchMessageRequest) SetExtendInfo(v string) *SendBatchMessageRequest
- func (s *SendBatchMessageRequest) SetIdType(v string) *SendBatchMessageRequest
- func (s *SendBatchMessageRequest) SetPhoneNumberJson(v string) *SendBatchMessageRequest
- func (s *SendBatchMessageRequest) SetSignNameJson(v string) *SendBatchMessageRequest
- func (s *SendBatchMessageRequest) SetSpecificChannel(v string) *SendBatchMessageRequest
- func (s *SendBatchMessageRequest) SetTemplateCode(v string) *SendBatchMessageRequest
- func (s *SendBatchMessageRequest) SetTemplateParamJson(v string) *SendBatchMessageRequest
- func (s SendBatchMessageRequest) String() string
- type SendBatchMessageResponse
- func (s SendBatchMessageResponse) GoString() string
- func (s *SendBatchMessageResponse) SetBody(v *SendBatchMessageResponseBody) *SendBatchMessageResponse
- func (s *SendBatchMessageResponse) SetHeaders(v map[string]*string) *SendBatchMessageResponse
- func (s *SendBatchMessageResponse) SetStatusCode(v int32) *SendBatchMessageResponse
- func (s SendBatchMessageResponse) String() string
- type SendBatchMessageResponseBody
- func (s SendBatchMessageResponseBody) GoString() string
- func (s *SendBatchMessageResponseBody) SetCode(v string) *SendBatchMessageResponseBody
- func (s *SendBatchMessageResponseBody) SetData(v []*SendBatchMessageResponseBodyData) *SendBatchMessageResponseBody
- func (s *SendBatchMessageResponseBody) SetMessage(v string) *SendBatchMessageResponseBody
- func (s *SendBatchMessageResponseBody) SetRequestId(v string) *SendBatchMessageResponseBody
- func (s SendBatchMessageResponseBody) String() string
- type SendBatchMessageResponseBodyData
- func (s SendBatchMessageResponseBodyData) GoString() string
- func (s *SendBatchMessageResponseBodyData) SetMobile(v string) *SendBatchMessageResponseBodyData
- func (s *SendBatchMessageResponseBodyData) SetTaskId(v string) *SendBatchMessageResponseBodyData
- func (s SendBatchMessageResponseBodyData) String() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
func (*Client) GetEndpoint ¶
func (*Client) GetMessageStatus ¶
func (client *Client) GetMessageStatus(request *GetMessageStatusRequest) (_result *GetMessageStatusResponse, _err error)
func (*Client) GetMessageStatusWithOptions ¶
func (client *Client) GetMessageStatusWithOptions(request *GetMessageStatusRequest, headers map[string]*string, runtime *util.RuntimeOptions) (_result *GetMessageStatusResponse, _err error)
func (*Client) SendBatchMessage ¶
func (client *Client) SendBatchMessage(request *SendBatchMessageRequest) (_result *SendBatchMessageResponse, _err error)
func (*Client) SendBatchMessageWithOptions ¶
func (client *Client) SendBatchMessageWithOptions(request *SendBatchMessageRequest, headers map[string]*string, runtime *util.RuntimeOptions) (_result *SendBatchMessageResponse, _err error)
type GetMessageStatusRequest ¶
type GetMessageStatusRequest struct {
TaskId *string `json:"TaskId,omitempty" xml:"TaskId,omitempty"`
}
func (GetMessageStatusRequest) GoString ¶
func (s GetMessageStatusRequest) GoString() string
func (*GetMessageStatusRequest) SetTaskId ¶
func (s *GetMessageStatusRequest) SetTaskId(v string) *GetMessageStatusRequest
func (GetMessageStatusRequest) String ¶
func (s GetMessageStatusRequest) String() string
type GetMessageStatusResponse ¶
type GetMessageStatusResponse struct { Headers map[string]*string `json:"headers,omitempty" xml:"headers,omitempty"` StatusCode *int32 `json:"statusCode,omitempty" xml:"statusCode,omitempty"` Body *GetMessageStatusResponseBody `json:"body,omitempty" xml:"body,omitempty"` }
func (GetMessageStatusResponse) GoString ¶
func (s GetMessageStatusResponse) GoString() string
func (*GetMessageStatusResponse) SetBody ¶
func (s *GetMessageStatusResponse) SetBody(v *GetMessageStatusResponseBody) *GetMessageStatusResponse
func (*GetMessageStatusResponse) SetHeaders ¶
func (s *GetMessageStatusResponse) SetHeaders(v map[string]*string) *GetMessageStatusResponse
func (*GetMessageStatusResponse) SetStatusCode ¶
func (s *GetMessageStatusResponse) SetStatusCode(v int32) *GetMessageStatusResponse
func (GetMessageStatusResponse) String ¶
func (s GetMessageStatusResponse) String() string
type GetMessageStatusResponseBody ¶
type GetMessageStatusResponseBody struct { Code *string `json:"Code,omitempty" xml:"Code,omitempty"` Data *GetMessageStatusResponseBodyData `json:"Data,omitempty" xml:"Data,omitempty" type:"Struct"` Message *string `json:"Message,omitempty" xml:"Message,omitempty"` RequestId *string `json:"RequestId,omitempty" xml:"RequestId,omitempty"` }
func (GetMessageStatusResponseBody) GoString ¶
func (s GetMessageStatusResponseBody) GoString() string
func (*GetMessageStatusResponseBody) SetCode ¶
func (s *GetMessageStatusResponseBody) SetCode(v string) *GetMessageStatusResponseBody
func (*GetMessageStatusResponseBody) SetData ¶
func (s *GetMessageStatusResponseBody) SetData(v *GetMessageStatusResponseBodyData) *GetMessageStatusResponseBody
func (*GetMessageStatusResponseBody) SetMessage ¶
func (s *GetMessageStatusResponseBody) SetMessage(v string) *GetMessageStatusResponseBody
func (*GetMessageStatusResponseBody) SetRequestId ¶
func (s *GetMessageStatusResponseBody) SetRequestId(v string) *GetMessageStatusResponseBody
func (GetMessageStatusResponseBody) String ¶
func (s GetMessageStatusResponseBody) String() string
type GetMessageStatusResponseBodyData ¶
type GetMessageStatusResponseBodyData struct { Mobile *string `json:"mobile,omitempty" xml:"mobile,omitempty"` RequestId *string `json:"requestId,omitempty" xml:"requestId,omitempty"` Status *string `json:"status,omitempty" xml:"status,omitempty"` }
func (GetMessageStatusResponseBodyData) GoString ¶
func (s GetMessageStatusResponseBodyData) GoString() string
func (*GetMessageStatusResponseBodyData) SetMobile ¶
func (s *GetMessageStatusResponseBodyData) SetMobile(v string) *GetMessageStatusResponseBodyData
func (*GetMessageStatusResponseBodyData) SetRequestId ¶
func (s *GetMessageStatusResponseBodyData) SetRequestId(v string) *GetMessageStatusResponseBodyData
func (*GetMessageStatusResponseBodyData) SetStatus ¶
func (s *GetMessageStatusResponseBodyData) SetStatus(v string) *GetMessageStatusResponseBodyData
func (GetMessageStatusResponseBodyData) String ¶
func (s GetMessageStatusResponseBodyData) String() string
type SendBatchMessageRequest ¶
type SendBatchMessageRequest struct { BatchFlag *string `json:"BatchFlag,omitempty" xml:"BatchFlag,omitempty"` ExtendInfo *string `json:"ExtendInfo,omitempty" xml:"ExtendInfo,omitempty"` IdType *string `json:"IdType,omitempty" xml:"IdType,omitempty"` PhoneNumberJson *string `json:"PhoneNumberJson,omitempty" xml:"PhoneNumberJson,omitempty"` SignNameJson *string `json:"SignNameJson,omitempty" xml:"SignNameJson,omitempty"` SpecificChannel *string `json:"SpecificChannel,omitempty" xml:"SpecificChannel,omitempty"` TemplateCode *string `json:"TemplateCode,omitempty" xml:"TemplateCode,omitempty"` TemplateParamJson *string `json:"TemplateParamJson,omitempty" xml:"TemplateParamJson,omitempty"` }
func (SendBatchMessageRequest) GoString ¶
func (s SendBatchMessageRequest) GoString() string
func (*SendBatchMessageRequest) SetBatchFlag ¶
func (s *SendBatchMessageRequest) SetBatchFlag(v string) *SendBatchMessageRequest
func (*SendBatchMessageRequest) SetExtendInfo ¶
func (s *SendBatchMessageRequest) SetExtendInfo(v string) *SendBatchMessageRequest
func (*SendBatchMessageRequest) SetIdType ¶
func (s *SendBatchMessageRequest) SetIdType(v string) *SendBatchMessageRequest
func (*SendBatchMessageRequest) SetPhoneNumberJson ¶
func (s *SendBatchMessageRequest) SetPhoneNumberJson(v string) *SendBatchMessageRequest
func (*SendBatchMessageRequest) SetSignNameJson ¶
func (s *SendBatchMessageRequest) SetSignNameJson(v string) *SendBatchMessageRequest
func (*SendBatchMessageRequest) SetSpecificChannel ¶
func (s *SendBatchMessageRequest) SetSpecificChannel(v string) *SendBatchMessageRequest
func (*SendBatchMessageRequest) SetTemplateCode ¶
func (s *SendBatchMessageRequest) SetTemplateCode(v string) *SendBatchMessageRequest
func (*SendBatchMessageRequest) SetTemplateParamJson ¶
func (s *SendBatchMessageRequest) SetTemplateParamJson(v string) *SendBatchMessageRequest
func (SendBatchMessageRequest) String ¶
func (s SendBatchMessageRequest) String() string
type SendBatchMessageResponse ¶
type SendBatchMessageResponse struct { Headers map[string]*string `json:"headers,omitempty" xml:"headers,omitempty"` StatusCode *int32 `json:"statusCode,omitempty" xml:"statusCode,omitempty"` Body *SendBatchMessageResponseBody `json:"body,omitempty" xml:"body,omitempty"` }
func (SendBatchMessageResponse) GoString ¶
func (s SendBatchMessageResponse) GoString() string
func (*SendBatchMessageResponse) SetBody ¶
func (s *SendBatchMessageResponse) SetBody(v *SendBatchMessageResponseBody) *SendBatchMessageResponse
func (*SendBatchMessageResponse) SetHeaders ¶
func (s *SendBatchMessageResponse) SetHeaders(v map[string]*string) *SendBatchMessageResponse
func (*SendBatchMessageResponse) SetStatusCode ¶
func (s *SendBatchMessageResponse) SetStatusCode(v int32) *SendBatchMessageResponse
func (SendBatchMessageResponse) String ¶
func (s SendBatchMessageResponse) String() string
type SendBatchMessageResponseBody ¶
type SendBatchMessageResponseBody struct { Code *string `json:"Code,omitempty" xml:"Code,omitempty"` Data []*SendBatchMessageResponseBodyData `json:"Data,omitempty" xml:"Data,omitempty" type:"Repeated"` Message *string `json:"Message,omitempty" xml:"Message,omitempty"` RequestId *string `json:"RequestId,omitempty" xml:"RequestId,omitempty"` }
func (SendBatchMessageResponseBody) GoString ¶
func (s SendBatchMessageResponseBody) GoString() string
func (*SendBatchMessageResponseBody) SetCode ¶
func (s *SendBatchMessageResponseBody) SetCode(v string) *SendBatchMessageResponseBody
func (*SendBatchMessageResponseBody) SetData ¶
func (s *SendBatchMessageResponseBody) SetData(v []*SendBatchMessageResponseBodyData) *SendBatchMessageResponseBody
func (*SendBatchMessageResponseBody) SetMessage ¶
func (s *SendBatchMessageResponseBody) SetMessage(v string) *SendBatchMessageResponseBody
func (*SendBatchMessageResponseBody) SetRequestId ¶
func (s *SendBatchMessageResponseBody) SetRequestId(v string) *SendBatchMessageResponseBody
func (SendBatchMessageResponseBody) String ¶
func (s SendBatchMessageResponseBody) String() string
type SendBatchMessageResponseBodyData ¶
type SendBatchMessageResponseBodyData struct { Mobile *string `json:"mobile,omitempty" xml:"mobile,omitempty"` TaskId *string `json:"taskId,omitempty" xml:"taskId,omitempty"` }
func (SendBatchMessageResponseBodyData) GoString ¶
func (s SendBatchMessageResponseBodyData) GoString() string
func (*SendBatchMessageResponseBodyData) SetMobile ¶
func (s *SendBatchMessageResponseBodyData) SetMobile(v string) *SendBatchMessageResponseBodyData
func (*SendBatchMessageResponseBodyData) SetTaskId ¶
func (s *SendBatchMessageResponseBodyData) SetTaskId(v string) *SendBatchMessageResponseBodyData
func (SendBatchMessageResponseBodyData) String ¶
func (s SendBatchMessageResponseBodyData) String() string
Click to show internal directories.
Click to hide internal directories.