notable_1_0

package
v1.6.63 Latest Latest
Warning

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

Go to latest
Published: Mar 26, 2024 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 Client

type Client struct {
	openapi.Client
}

func NewClient

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

func (*Client) CreateSheet

func (client *Client) CreateSheet(baseId *string, name *string, request *CreateSheetRequest) (_result *CreateSheetResponse, _err error)

func (*Client) CreateSheetWithOptions

func (client *Client) CreateSheetWithOptions(baseId *string, name *string, request *CreateSheetRequest, headers *CreateSheetHeaders, runtime *util.RuntimeOptions) (_result *CreateSheetResponse, _err error)

func (*Client) DeleteSheet

func (client *Client) DeleteSheet(baseId *string, sheetIdOrName *string) (_result *DeleteSheetResponse, _err error)

func (*Client) DeleteSheetWithOptions

func (client *Client) DeleteSheetWithOptions(baseId *string, sheetIdOrName *string, headers *DeleteSheetHeaders, runtime *util.RuntimeOptions) (_result *DeleteSheetResponse, _err error)

func (*Client) GetAllSheets

func (client *Client) GetAllSheets(baseId *string) (_result *GetAllSheetsResponse, _err error)

func (*Client) GetAllSheetsWithOptions

func (client *Client) GetAllSheetsWithOptions(baseId *string, headers *GetAllSheetsHeaders, runtime *util.RuntimeOptions) (_result *GetAllSheetsResponse, _err error)

func (*Client) GetRecord

func (client *Client) GetRecord(baseId *string, sheetIdOrName *string, recordId *string) (_result *GetRecordResponse, _err error)

func (*Client) GetRecordWithOptions

func (client *Client) GetRecordWithOptions(baseId *string, sheetIdOrName *string, recordId *string, headers *GetRecordHeaders, runtime *util.RuntimeOptions) (_result *GetRecordResponse, _err error)

func (*Client) GetRecords

func (client *Client) GetRecords(baseId *string, sheetIdOrName *string, request *GetRecordsRequest) (_result *GetRecordsResponse, _err error)

func (*Client) GetRecordsWithOptions

func (client *Client) GetRecordsWithOptions(baseId *string, sheetIdOrName *string, request *GetRecordsRequest, headers *GetRecordsHeaders, runtime *util.RuntimeOptions) (_result *GetRecordsResponse, _err error)

func (*Client) GetSheet

func (client *Client) GetSheet(baseId *string, sheetIdOrName *string) (_result *GetSheetResponse, _err error)

func (*Client) GetSheetWithOptions

func (client *Client) GetSheetWithOptions(baseId *string, sheetIdOrName *string, headers *GetSheetHeaders, runtime *util.RuntimeOptions) (_result *GetSheetResponse, _err error)

func (*Client) Init

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

func (*Client) InsertRecords

func (client *Client) InsertRecords(baseId *string, sheetIdOrName *string, request *InsertRecordsRequest) (_result *InsertRecordsResponse, _err error)

func (*Client) InsertRecordsWithOptions

func (client *Client) InsertRecordsWithOptions(baseId *string, sheetIdOrName *string, request *InsertRecordsRequest, headers *InsertRecordsHeaders, runtime *util.RuntimeOptions) (_result *InsertRecordsResponse, _err error)

type CreateSheetHeaders

type CreateSheetHeaders 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 (CreateSheetHeaders) GoString

func (s CreateSheetHeaders) GoString() string

func (*CreateSheetHeaders) SetCommonHeaders

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

func (*CreateSheetHeaders) SetXAcsDingtalkAccessToken

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

func (CreateSheetHeaders) String

func (s CreateSheetHeaders) String() string

type CreateSheetRequest

type CreateSheetRequest struct {
	Fields []*CreateSheetRequestFields `json:"fields,omitempty" xml:"fields,omitempty" type:"Repeated"`
}

func (CreateSheetRequest) GoString

func (s CreateSheetRequest) GoString() string

func (*CreateSheetRequest) SetFields

func (CreateSheetRequest) String

func (s CreateSheetRequest) String() string

type CreateSheetRequestFields

type CreateSheetRequestFields struct {
	Name     *string                `json:"name,omitempty" xml:"name,omitempty"`
	Property map[string]interface{} `json:"property,omitempty" xml:"property,omitempty"`
	Type     *string                `json:"type,omitempty" xml:"type,omitempty"`
}

func (CreateSheetRequestFields) GoString

func (s CreateSheetRequestFields) GoString() string

func (*CreateSheetRequestFields) SetName

func (*CreateSheetRequestFields) SetProperty

func (s *CreateSheetRequestFields) SetProperty(v map[string]interface{}) *CreateSheetRequestFields

func (*CreateSheetRequestFields) SetType

func (CreateSheetRequestFields) String

func (s CreateSheetRequestFields) String() string

type CreateSheetResponse

type CreateSheetResponse struct {
	Headers    map[string]*string       `json:"headers,omitempty" xml:"headers,omitempty"`
	StatusCode *int32                   `json:"statusCode,omitempty" xml:"statusCode,omitempty"`
	Body       *CreateSheetResponseBody `json:"body,omitempty" xml:"body,omitempty"`
}

func (CreateSheetResponse) GoString

func (s CreateSheetResponse) GoString() string

func (*CreateSheetResponse) SetBody

func (*CreateSheetResponse) SetHeaders

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

func (*CreateSheetResponse) SetStatusCode

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

func (CreateSheetResponse) String

func (s CreateSheetResponse) String() string

type CreateSheetResponseBody

type CreateSheetResponseBody struct {
	Id   *string `json:"id,omitempty" xml:"id,omitempty"`
	Name *string `json:"name,omitempty" xml:"name,omitempty"`
}

func (CreateSheetResponseBody) GoString

func (s CreateSheetResponseBody) GoString() string

func (*CreateSheetResponseBody) SetId

func (*CreateSheetResponseBody) SetName

func (CreateSheetResponseBody) String

func (s CreateSheetResponseBody) String() string

type DeleteSheetHeaders

type DeleteSheetHeaders 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 (DeleteSheetHeaders) GoString

func (s DeleteSheetHeaders) GoString() string

func (*DeleteSheetHeaders) SetCommonHeaders

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

func (*DeleteSheetHeaders) SetXAcsDingtalkAccessToken

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

func (DeleteSheetHeaders) String

func (s DeleteSheetHeaders) String() string

type DeleteSheetResponse

type DeleteSheetResponse struct {
	Headers    map[string]*string       `json:"headers,omitempty" xml:"headers,omitempty"`
	StatusCode *int32                   `json:"statusCode,omitempty" xml:"statusCode,omitempty"`
	Body       *DeleteSheetResponseBody `json:"body,omitempty" xml:"body,omitempty"`
}

func (DeleteSheetResponse) GoString

func (s DeleteSheetResponse) GoString() string

func (*DeleteSheetResponse) SetBody

func (*DeleteSheetResponse) SetHeaders

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

func (*DeleteSheetResponse) SetStatusCode

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

func (DeleteSheetResponse) String

func (s DeleteSheetResponse) String() string

type DeleteSheetResponseBody

type DeleteSheetResponseBody struct {
	Success *bool `json:"success,omitempty" xml:"success,omitempty"`
}

func (DeleteSheetResponseBody) GoString

func (s DeleteSheetResponseBody) GoString() string

func (*DeleteSheetResponseBody) SetSuccess

func (DeleteSheetResponseBody) String

func (s DeleteSheetResponseBody) String() string

type GetAllSheetsHeaders

type GetAllSheetsHeaders 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 (GetAllSheetsHeaders) GoString

func (s GetAllSheetsHeaders) GoString() string

func (*GetAllSheetsHeaders) SetCommonHeaders

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

func (*GetAllSheetsHeaders) SetXAcsDingtalkAccessToken

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

func (GetAllSheetsHeaders) String

func (s GetAllSheetsHeaders) String() string

type GetAllSheetsResponse

type GetAllSheetsResponse struct {
	Headers    map[string]*string        `json:"headers,omitempty" xml:"headers,omitempty"`
	StatusCode *int32                    `json:"statusCode,omitempty" xml:"statusCode,omitempty"`
	Body       *GetAllSheetsResponseBody `json:"body,omitempty" xml:"body,omitempty"`
}

func (GetAllSheetsResponse) GoString

func (s GetAllSheetsResponse) GoString() string

func (*GetAllSheetsResponse) SetBody

func (*GetAllSheetsResponse) SetHeaders

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

func (*GetAllSheetsResponse) SetStatusCode

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

func (GetAllSheetsResponse) String

func (s GetAllSheetsResponse) String() string

type GetAllSheetsResponseBody

type GetAllSheetsResponseBody struct {
	Value []*GetAllSheetsResponseBodyValue `json:"value,omitempty" xml:"value,omitempty" type:"Repeated"`
}

func (GetAllSheetsResponseBody) GoString

func (s GetAllSheetsResponseBody) GoString() string

func (*GetAllSheetsResponseBody) SetValue

func (GetAllSheetsResponseBody) String

func (s GetAllSheetsResponseBody) String() string

type GetAllSheetsResponseBodyValue

type GetAllSheetsResponseBodyValue struct {
	Fields []*GetAllSheetsResponseBodyValueFields `json:"fields,omitempty" xml:"fields,omitempty" type:"Repeated"`
	Id     *string                                `json:"id,omitempty" xml:"id,omitempty"`
	Name   *string                                `json:"name,omitempty" xml:"name,omitempty"`
}

func (GetAllSheetsResponseBodyValue) GoString

func (*GetAllSheetsResponseBodyValue) SetFields

func (*GetAllSheetsResponseBodyValue) SetId

func (*GetAllSheetsResponseBodyValue) SetName

func (GetAllSheetsResponseBodyValue) String

type GetAllSheetsResponseBodyValueFields

type GetAllSheetsResponseBodyValueFields struct {
	Id       *string                `json:"id,omitempty" xml:"id,omitempty"`
	Name     *string                `json:"name,omitempty" xml:"name,omitempty"`
	Property map[string]interface{} `json:"property,omitempty" xml:"property,omitempty"`
	Type     *string                `json:"type,omitempty" xml:"type,omitempty"`
}

func (GetAllSheetsResponseBodyValueFields) GoString

func (*GetAllSheetsResponseBodyValueFields) SetId

func (*GetAllSheetsResponseBodyValueFields) SetName

func (*GetAllSheetsResponseBodyValueFields) SetProperty

func (*GetAllSheetsResponseBodyValueFields) SetType

func (GetAllSheetsResponseBodyValueFields) String

type GetRecordHeaders

type GetRecordHeaders 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 (GetRecordHeaders) GoString

func (s GetRecordHeaders) GoString() string

func (*GetRecordHeaders) SetCommonHeaders

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

func (*GetRecordHeaders) SetXAcsDingtalkAccessToken

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

func (GetRecordHeaders) String

func (s GetRecordHeaders) String() string

type GetRecordResponse

type GetRecordResponse struct {
	Headers    map[string]*string     `json:"headers,omitempty" xml:"headers,omitempty"`
	StatusCode *int32                 `json:"statusCode,omitempty" xml:"statusCode,omitempty"`
	Body       *GetRecordResponseBody `json:"body,omitempty" xml:"body,omitempty"`
}

func (GetRecordResponse) GoString

func (s GetRecordResponse) GoString() string

func (*GetRecordResponse) SetBody

func (*GetRecordResponse) SetHeaders

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

func (*GetRecordResponse) SetStatusCode

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

func (GetRecordResponse) String

func (s GetRecordResponse) String() string

type GetRecordResponseBody

type GetRecordResponseBody struct {
	Fields map[string]interface{} `json:"fields,omitempty" xml:"fields,omitempty"`
	Id     *string                `json:"id,omitempty" xml:"id,omitempty"`
}

func (GetRecordResponseBody) GoString

func (s GetRecordResponseBody) GoString() string

func (*GetRecordResponseBody) SetFields

func (s *GetRecordResponseBody) SetFields(v map[string]interface{}) *GetRecordResponseBody

func (*GetRecordResponseBody) SetId

func (GetRecordResponseBody) String

func (s GetRecordResponseBody) String() string

type GetRecordsHeaders

type GetRecordsHeaders 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 (GetRecordsHeaders) GoString

func (s GetRecordsHeaders) GoString() string

func (*GetRecordsHeaders) SetCommonHeaders

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

func (*GetRecordsHeaders) SetXAcsDingtalkAccessToken

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

func (GetRecordsHeaders) String

func (s GetRecordsHeaders) String() string

type GetRecordsRequest

type GetRecordsRequest struct {
	MaxResults *int32  `json:"maxResults,omitempty" xml:"maxResults,omitempty"`
	NextToken  *string `json:"nextToken,omitempty" xml:"nextToken,omitempty"`
}

func (GetRecordsRequest) GoString

func (s GetRecordsRequest) GoString() string

func (*GetRecordsRequest) SetMaxResults

func (s *GetRecordsRequest) SetMaxResults(v int32) *GetRecordsRequest

func (*GetRecordsRequest) SetNextToken

func (s *GetRecordsRequest) SetNextToken(v string) *GetRecordsRequest

func (GetRecordsRequest) String

func (s GetRecordsRequest) String() string

type GetRecordsResponse

type GetRecordsResponse struct {
	Headers    map[string]*string      `json:"headers,omitempty" xml:"headers,omitempty"`
	StatusCode *int32                  `json:"statusCode,omitempty" xml:"statusCode,omitempty"`
	Body       *GetRecordsResponseBody `json:"body,omitempty" xml:"body,omitempty"`
}

func (GetRecordsResponse) GoString

func (s GetRecordsResponse) GoString() string

func (*GetRecordsResponse) SetBody

func (*GetRecordsResponse) SetHeaders

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

func (*GetRecordsResponse) SetStatusCode

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

func (GetRecordsResponse) String

func (s GetRecordsResponse) String() string

type GetRecordsResponseBody

type GetRecordsResponseBody struct {
	HasMore   *bool                            `json:"hasMore,omitempty" xml:"hasMore,omitempty"`
	NextToken *string                          `json:"nextToken,omitempty" xml:"nextToken,omitempty"`
	Records   []*GetRecordsResponseBodyRecords `json:"records,omitempty" xml:"records,omitempty" type:"Repeated"`
}

func (GetRecordsResponseBody) GoString

func (s GetRecordsResponseBody) GoString() string

func (*GetRecordsResponseBody) SetHasMore

func (*GetRecordsResponseBody) SetNextToken

func (*GetRecordsResponseBody) SetRecords

func (GetRecordsResponseBody) String

func (s GetRecordsResponseBody) String() string

type GetRecordsResponseBodyRecords

type GetRecordsResponseBodyRecords struct {
	Fields map[string]interface{} `json:"fields,omitempty" xml:"fields,omitempty"`
	Id     *string                `json:"id,omitempty" xml:"id,omitempty"`
}

func (GetRecordsResponseBodyRecords) GoString

func (*GetRecordsResponseBodyRecords) SetFields

func (s *GetRecordsResponseBodyRecords) SetFields(v map[string]interface{}) *GetRecordsResponseBodyRecords

func (*GetRecordsResponseBodyRecords) SetId

func (GetRecordsResponseBodyRecords) String

type GetSheetHeaders

type GetSheetHeaders 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 (GetSheetHeaders) GoString

func (s GetSheetHeaders) GoString() string

func (*GetSheetHeaders) SetCommonHeaders

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

func (*GetSheetHeaders) SetXAcsDingtalkAccessToken

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

func (GetSheetHeaders) String

func (s GetSheetHeaders) String() string

type GetSheetResponse

type GetSheetResponse struct {
	Headers    map[string]*string    `json:"headers,omitempty" xml:"headers,omitempty"`
	StatusCode *int32                `json:"statusCode,omitempty" xml:"statusCode,omitempty"`
	Body       *GetSheetResponseBody `json:"body,omitempty" xml:"body,omitempty"`
}

func (GetSheetResponse) GoString

func (s GetSheetResponse) GoString() string

func (*GetSheetResponse) SetBody

func (*GetSheetResponse) SetHeaders

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

func (*GetSheetResponse) SetStatusCode

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

func (GetSheetResponse) String

func (s GetSheetResponse) String() string

type GetSheetResponseBody

type GetSheetResponseBody struct {
	Fields []*GetSheetResponseBodyFields `json:"fields,omitempty" xml:"fields,omitempty" type:"Repeated"`
}

func (GetSheetResponseBody) GoString

func (s GetSheetResponseBody) GoString() string

func (*GetSheetResponseBody) SetFields

func (GetSheetResponseBody) String

func (s GetSheetResponseBody) String() string

type GetSheetResponseBodyFields

type GetSheetResponseBodyFields struct {
	Id       *string                `json:"id,omitempty" xml:"id,omitempty"`
	Name     *string                `json:"name,omitempty" xml:"name,omitempty"`
	Property map[string]interface{} `json:"property,omitempty" xml:"property,omitempty"`
	Type     *string                `json:"type,omitempty" xml:"type,omitempty"`
}

func (GetSheetResponseBodyFields) GoString

func (s GetSheetResponseBodyFields) GoString() string

func (*GetSheetResponseBodyFields) SetId

func (*GetSheetResponseBodyFields) SetName

func (*GetSheetResponseBodyFields) SetProperty

func (s *GetSheetResponseBodyFields) SetProperty(v map[string]interface{}) *GetSheetResponseBodyFields

func (*GetSheetResponseBodyFields) SetType

func (GetSheetResponseBodyFields) String

type InsertRecordsHeaders

type InsertRecordsHeaders 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 (InsertRecordsHeaders) GoString

func (s InsertRecordsHeaders) GoString() string

func (*InsertRecordsHeaders) SetCommonHeaders

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

func (*InsertRecordsHeaders) SetXAcsDingtalkAccessToken

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

func (InsertRecordsHeaders) String

func (s InsertRecordsHeaders) String() string

type InsertRecordsRequest

type InsertRecordsRequest struct {
	Records []*InsertRecordsRequestRecords `json:"records,omitempty" xml:"records,omitempty" type:"Repeated"`
}

func (InsertRecordsRequest) GoString

func (s InsertRecordsRequest) GoString() string

func (*InsertRecordsRequest) SetRecords

func (InsertRecordsRequest) String

func (s InsertRecordsRequest) String() string

type InsertRecordsRequestRecords

type InsertRecordsRequestRecords struct {
	Fields map[string]interface{} `json:"fields,omitempty" xml:"fields,omitempty"`
}

func (InsertRecordsRequestRecords) GoString

func (s InsertRecordsRequestRecords) GoString() string

func (*InsertRecordsRequestRecords) SetFields

func (s *InsertRecordsRequestRecords) SetFields(v map[string]interface{}) *InsertRecordsRequestRecords

func (InsertRecordsRequestRecords) String

type InsertRecordsResponse

type InsertRecordsResponse struct {
	Headers    map[string]*string         `json:"headers,omitempty" xml:"headers,omitempty"`
	StatusCode *int32                     `json:"statusCode,omitempty" xml:"statusCode,omitempty"`
	Body       *InsertRecordsResponseBody `json:"body,omitempty" xml:"body,omitempty"`
}

func (InsertRecordsResponse) GoString

func (s InsertRecordsResponse) GoString() string

func (*InsertRecordsResponse) SetBody

func (*InsertRecordsResponse) SetHeaders

func (*InsertRecordsResponse) SetStatusCode

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

func (InsertRecordsResponse) String

func (s InsertRecordsResponse) String() string

type InsertRecordsResponseBody

type InsertRecordsResponseBody struct {
	Value []*InsertRecordsResponseBodyValue `json:"value,omitempty" xml:"value,omitempty" type:"Repeated"`
}

func (InsertRecordsResponseBody) GoString

func (s InsertRecordsResponseBody) GoString() string

func (*InsertRecordsResponseBody) SetValue

func (InsertRecordsResponseBody) String

func (s InsertRecordsResponseBody) String() string

type InsertRecordsResponseBodyValue

type InsertRecordsResponseBodyValue struct {
	Id *string `json:"id,omitempty" xml:"id,omitempty"`
}

func (InsertRecordsResponseBodyValue) GoString

func (*InsertRecordsResponseBodyValue) SetId

func (InsertRecordsResponseBodyValue) String

Jump to

Keyboard shortcuts

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