watt_1_0

package
v1.6.11 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 18, 2023 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Overview

This file is auto-generated, don't edit it. Thanks. *

*

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CheckInCrowdsByMobileRequest

type CheckInCrowdsByMobileRequest struct {
	CrowdIds []byte  `json:"crowdIds,omitempty" xml:"crowdIds,omitempty"`
	Mobile   *string `json:"mobile,omitempty" xml:"mobile,omitempty"`
}

func (CheckInCrowdsByMobileRequest) GoString

func (s CheckInCrowdsByMobileRequest) GoString() string

func (*CheckInCrowdsByMobileRequest) SetCrowdIds

func (*CheckInCrowdsByMobileRequest) SetMobile

func (CheckInCrowdsByMobileRequest) String

type CheckInCrowdsByMobileResponse

type CheckInCrowdsByMobileResponse struct {
	Headers    map[string]*string                 `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	StatusCode *int32                             `json:"statusCode,omitempty" xml:"statusCode,omitempty" require:"true"`
	Body       *CheckInCrowdsByMobileResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (CheckInCrowdsByMobileResponse) GoString

func (*CheckInCrowdsByMobileResponse) SetBody

func (*CheckInCrowdsByMobileResponse) SetHeaders

func (*CheckInCrowdsByMobileResponse) SetStatusCode

func (CheckInCrowdsByMobileResponse) String

type CheckInCrowdsByMobileResponseBody

type CheckInCrowdsByMobileResponseBody struct {
	Data    *bool  `json:"data,omitempty" xml:"data,omitempty"`
	Success *bool  `json:"success,omitempty" xml:"success,omitempty"`
	Total   *int32 `json:"total,omitempty" xml:"total,omitempty"`
}

func (CheckInCrowdsByMobileResponseBody) GoString

func (*CheckInCrowdsByMobileResponseBody) SetData

func (*CheckInCrowdsByMobileResponseBody) SetSuccess

func (*CheckInCrowdsByMobileResponseBody) SetTotal

func (CheckInCrowdsByMobileResponseBody) String

type Client

type Client struct {
	openapi.Client
}

func NewClient

func NewClient(config *openapi.Config) (*Client, error)

func (*Client) CheckInCrowdsByMobile

func (client *Client) CheckInCrowdsByMobile(request *CheckInCrowdsByMobileRequest) (_result *CheckInCrowdsByMobileResponse, _err error)

func (*Client) CheckInCrowdsByMobileWithOptions

func (client *Client) CheckInCrowdsByMobileWithOptions(request *CheckInCrowdsByMobileRequest, headers map[string]*string, runtime *util.RuntimeOptions) (_result *CheckInCrowdsByMobileResponse, _err error)

func (*Client) Init

func (client *Client) Init(config *openapi.Config) (_err error)

func (*Client) SendBanner added in v1.5.89

func (client *Client) SendBanner(request *SendBannerRequest) (_result *SendBannerResponse, _err error)

func (*Client) SendBannerWithOptions added in v1.5.89

func (client *Client) SendBannerWithOptions(request *SendBannerRequest, headers *SendBannerHeaders, runtime *util.RuntimeOptions) (_result *SendBannerResponse, _err error)

func (*Client) SendPopup added in v1.5.89

func (client *Client) SendPopup(request *SendPopupRequest) (_result *SendPopupResponse, _err error)

func (*Client) SendPopupWithOptions added in v1.5.89

func (client *Client) SendPopupWithOptions(request *SendPopupRequest, headers *SendPopupHeaders, runtime *util.RuntimeOptions) (_result *SendPopupResponse, _err error)

func (*Client) SendSearchShade added in v1.5.89

func (client *Client) SendSearchShade(request *SendSearchShadeRequest) (_result *SendSearchShadeResponse, _err error)

func (*Client) SendSearchShadeWithOptions added in v1.5.89

func (client *Client) SendSearchShadeWithOptions(request *SendSearchShadeRequest, headers *SendSearchShadeHeaders, runtime *util.RuntimeOptions) (_result *SendSearchShadeResponse, _err error)

type SendBannerHeaders added in v1.5.89

type SendBannerHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (SendBannerHeaders) GoString added in v1.5.89

func (s SendBannerHeaders) GoString() string

func (*SendBannerHeaders) SetCommonHeaders added in v1.5.89

func (s *SendBannerHeaders) SetCommonHeaders(v map[string]*string) *SendBannerHeaders

func (*SendBannerHeaders) SetXAcsDingtalkAccessToken added in v1.5.89

func (s *SendBannerHeaders) SetXAcsDingtalkAccessToken(v string) *SendBannerHeaders

func (SendBannerHeaders) String added in v1.5.89

func (s SendBannerHeaders) String() string

type SendBannerRequest added in v1.5.89

type SendBannerRequest struct {
	Content   map[string]interface{} `json:"content,omitempty" xml:"content,omitempty"`
	EndTime   *int64                 `json:"endTime,omitempty" xml:"endTime,omitempty"`
	StartTime *int64                 `json:"startTime,omitempty" xml:"startTime,omitempty"`
	UserId    *string                `json:"userId,omitempty" xml:"userId,omitempty"`
}

func (SendBannerRequest) GoString added in v1.5.89

func (s SendBannerRequest) GoString() string

func (*SendBannerRequest) SetContent added in v1.5.89

func (s *SendBannerRequest) SetContent(v map[string]interface{}) *SendBannerRequest

func (*SendBannerRequest) SetEndTime added in v1.5.89

func (s *SendBannerRequest) SetEndTime(v int64) *SendBannerRequest

func (*SendBannerRequest) SetStartTime added in v1.5.89

func (s *SendBannerRequest) SetStartTime(v int64) *SendBannerRequest

func (*SendBannerRequest) SetUserId added in v1.5.89

func (s *SendBannerRequest) SetUserId(v string) *SendBannerRequest

func (SendBannerRequest) String added in v1.5.89

func (s SendBannerRequest) String() string

type SendBannerResponse added in v1.5.89

type SendBannerResponse struct {
	Headers    map[string]*string      `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	StatusCode *int32                  `json:"statusCode,omitempty" xml:"statusCode,omitempty" require:"true"`
	Body       *SendBannerResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (SendBannerResponse) GoString added in v1.5.89

func (s SendBannerResponse) GoString() string

func (*SendBannerResponse) SetBody added in v1.5.89

func (*SendBannerResponse) SetHeaders added in v1.5.89

func (s *SendBannerResponse) SetHeaders(v map[string]*string) *SendBannerResponse

func (*SendBannerResponse) SetStatusCode added in v1.5.89

func (s *SendBannerResponse) SetStatusCode(v int32) *SendBannerResponse

func (SendBannerResponse) String added in v1.5.89

func (s SendBannerResponse) String() string

type SendBannerResponseBody added in v1.5.89

type SendBannerResponseBody struct {
	Arguments []interface{} `json:"arguments,omitempty" xml:"arguments,omitempty" type:"Repeated"`
	Success   *bool         `json:"success,omitempty" xml:"success,omitempty"`
}

func (SendBannerResponseBody) GoString added in v1.5.89

func (s SendBannerResponseBody) GoString() string

func (*SendBannerResponseBody) SetArguments added in v1.5.89

func (s *SendBannerResponseBody) SetArguments(v []interface{}) *SendBannerResponseBody

func (*SendBannerResponseBody) SetSuccess added in v1.5.89

func (SendBannerResponseBody) String added in v1.5.89

func (s SendBannerResponseBody) String() string

type SendPopupHeaders added in v1.5.89

type SendPopupHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (SendPopupHeaders) GoString added in v1.5.89

func (s SendPopupHeaders) GoString() string

func (*SendPopupHeaders) SetCommonHeaders added in v1.5.89

func (s *SendPopupHeaders) SetCommonHeaders(v map[string]*string) *SendPopupHeaders

func (*SendPopupHeaders) SetXAcsDingtalkAccessToken added in v1.5.89

func (s *SendPopupHeaders) SetXAcsDingtalkAccessToken(v string) *SendPopupHeaders

func (SendPopupHeaders) String added in v1.5.89

func (s SendPopupHeaders) String() string

type SendPopupRequest added in v1.5.89

type SendPopupRequest struct {
	Content   map[string]interface{} `json:"content,omitempty" xml:"content,omitempty"`
	EndTime   *int64                 `json:"endTime,omitempty" xml:"endTime,omitempty"`
	StartTime *int64                 `json:"startTime,omitempty" xml:"startTime,omitempty"`
	UserId    *string                `json:"userId,omitempty" xml:"userId,omitempty"`
}

func (SendPopupRequest) GoString added in v1.5.89

func (s SendPopupRequest) GoString() string

func (*SendPopupRequest) SetContent added in v1.5.89

func (s *SendPopupRequest) SetContent(v map[string]interface{}) *SendPopupRequest

func (*SendPopupRequest) SetEndTime added in v1.5.89

func (s *SendPopupRequest) SetEndTime(v int64) *SendPopupRequest

func (*SendPopupRequest) SetStartTime added in v1.5.89

func (s *SendPopupRequest) SetStartTime(v int64) *SendPopupRequest

func (*SendPopupRequest) SetUserId added in v1.5.89

func (s *SendPopupRequest) SetUserId(v string) *SendPopupRequest

func (SendPopupRequest) String added in v1.5.89

func (s SendPopupRequest) String() string

type SendPopupResponse added in v1.5.89

type SendPopupResponse struct {
	Headers    map[string]*string     `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	StatusCode *int32                 `json:"statusCode,omitempty" xml:"statusCode,omitempty" require:"true"`
	Body       *SendPopupResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (SendPopupResponse) GoString added in v1.5.89

func (s SendPopupResponse) GoString() string

func (*SendPopupResponse) SetBody added in v1.5.89

func (*SendPopupResponse) SetHeaders added in v1.5.89

func (s *SendPopupResponse) SetHeaders(v map[string]*string) *SendPopupResponse

func (*SendPopupResponse) SetStatusCode added in v1.5.89

func (s *SendPopupResponse) SetStatusCode(v int32) *SendPopupResponse

func (SendPopupResponse) String added in v1.5.89

func (s SendPopupResponse) String() string

type SendPopupResponseBody added in v1.5.89

type SendPopupResponseBody struct {
	Arguments []interface{} `json:"arguments,omitempty" xml:"arguments,omitempty" type:"Repeated"`
	Success   *bool         `json:"success,omitempty" xml:"success,omitempty"`
}

func (SendPopupResponseBody) GoString added in v1.5.89

func (s SendPopupResponseBody) GoString() string

func (*SendPopupResponseBody) SetArguments added in v1.5.89

func (s *SendPopupResponseBody) SetArguments(v []interface{}) *SendPopupResponseBody

func (*SendPopupResponseBody) SetSuccess added in v1.5.89

func (SendPopupResponseBody) String added in v1.5.89

func (s SendPopupResponseBody) String() string

type SendSearchShadeHeaders added in v1.5.89

type SendSearchShadeHeaders struct {
	CommonHeaders           map[string]*string `json:"commonHeaders,omitempty" xml:"commonHeaders,omitempty"`
	XAcsDingtalkAccessToken *string            `json:"x-acs-dingtalk-access-token,omitempty" xml:"x-acs-dingtalk-access-token,omitempty"`
}

func (SendSearchShadeHeaders) GoString added in v1.5.89

func (s SendSearchShadeHeaders) GoString() string

func (*SendSearchShadeHeaders) SetCommonHeaders added in v1.5.89

func (s *SendSearchShadeHeaders) SetCommonHeaders(v map[string]*string) *SendSearchShadeHeaders

func (*SendSearchShadeHeaders) SetXAcsDingtalkAccessToken added in v1.5.89

func (s *SendSearchShadeHeaders) SetXAcsDingtalkAccessToken(v string) *SendSearchShadeHeaders

func (SendSearchShadeHeaders) String added in v1.5.89

func (s SendSearchShadeHeaders) String() string

type SendSearchShadeRequest added in v1.5.89

type SendSearchShadeRequest struct {
	Content   map[string]interface{} `json:"content,omitempty" xml:"content,omitempty"`
	EndTime   *int64                 `json:"endTime,omitempty" xml:"endTime,omitempty"`
	StartTime *int64                 `json:"startTime,omitempty" xml:"startTime,omitempty"`
	UserId    *string                `json:"userId,omitempty" xml:"userId,omitempty"`
}

func (SendSearchShadeRequest) GoString added in v1.5.89

func (s SendSearchShadeRequest) GoString() string

func (*SendSearchShadeRequest) SetContent added in v1.5.89

func (s *SendSearchShadeRequest) SetContent(v map[string]interface{}) *SendSearchShadeRequest

func (*SendSearchShadeRequest) SetEndTime added in v1.5.89

func (*SendSearchShadeRequest) SetStartTime added in v1.5.89

func (*SendSearchShadeRequest) SetUserId added in v1.5.89

func (SendSearchShadeRequest) String added in v1.5.89

func (s SendSearchShadeRequest) String() string

type SendSearchShadeResponse added in v1.5.89

type SendSearchShadeResponse struct {
	Headers    map[string]*string           `json:"headers,omitempty" xml:"headers,omitempty" require:"true"`
	StatusCode *int32                       `json:"statusCode,omitempty" xml:"statusCode,omitempty" require:"true"`
	Body       *SendSearchShadeResponseBody `json:"body,omitempty" xml:"body,omitempty" require:"true"`
}

func (SendSearchShadeResponse) GoString added in v1.5.89

func (s SendSearchShadeResponse) GoString() string

func (*SendSearchShadeResponse) SetBody added in v1.5.89

func (*SendSearchShadeResponse) SetHeaders added in v1.5.89

func (*SendSearchShadeResponse) SetStatusCode added in v1.5.89

func (SendSearchShadeResponse) String added in v1.5.89

func (s SendSearchShadeResponse) String() string

type SendSearchShadeResponseBody added in v1.5.89

type SendSearchShadeResponseBody struct {
	Arguments []interface{} `json:"arguments,omitempty" xml:"arguments,omitempty" type:"Repeated"`
	Success   *bool         `json:"success,omitempty" xml:"success,omitempty"`
}

func (SendSearchShadeResponseBody) GoString added in v1.5.89

func (s SendSearchShadeResponseBody) GoString() string

func (*SendSearchShadeResponseBody) SetArguments added in v1.5.89

func (s *SendSearchShadeResponseBody) SetArguments(v []interface{}) *SendSearchShadeResponseBody

func (*SendSearchShadeResponseBody) SetSuccess added in v1.5.89

func (SendSearchShadeResponseBody) String added in v1.5.89

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL