-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathapi_drive_sheet_float_image_get.go
91 lines (80 loc) · 4.42 KB
/
api_drive_sheet_float_image_get.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Code generated by lark_sdk_gen. DO NOT EDIT.
/**
* Copyright 2022 chyroc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package lark
import (
"context"
)
// GetSheetFloatImage 根据 float_image_id 获取对应浮动图片的信息。
//
// 浮动图片参考: [浮动图片指南](https://open.feishu.cn/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-float_image/float-image-user-guide)
//
// doc: https://open.feishu.cn/document/ukTMukTMukTM/uUDN04SN0QjL1QDN/sheets-v3/spreadsheet-sheet-float_image/get
// new doc: https://open.feishu.cn/document/server-docs/docs/sheets-v3/spreadsheet-sheet-float_image/get
func (r *DriveService) GetSheetFloatImage(ctx context.Context, request *GetSheetFloatImageReq, options ...MethodOptionFunc) (*GetSheetFloatImageResp, *Response, error) {
if r.cli.mock.mockDriveGetSheetFloatImage != nil {
r.cli.Log(ctx, LogLevelDebug, "[lark] Drive#GetSheetFloatImage mock enable")
return r.cli.mock.mockDriveGetSheetFloatImage(ctx, request, options...)
}
req := &RawRequestReq{
Scope: "Drive",
API: "GetSheetFloatImage",
Method: "GET",
URL: r.cli.openBaseURL + "/open-apis/sheets/v3/spreadsheets/:spreadsheet_token/sheets/:sheet_id/float_images/:float_image_id",
Body: request,
MethodOption: newMethodOption(options),
NeedTenantAccessToken: true,
NeedUserAccessToken: true,
}
resp := new(getSheetFloatImageResp)
response, err := r.cli.RawRequest(ctx, req, resp)
return resp.Data, response, err
}
// MockDriveGetSheetFloatImage mock DriveGetSheetFloatImage method
func (r *Mock) MockDriveGetSheetFloatImage(f func(ctx context.Context, request *GetSheetFloatImageReq, options ...MethodOptionFunc) (*GetSheetFloatImageResp, *Response, error)) {
r.mockDriveGetSheetFloatImage = f
}
// UnMockDriveGetSheetFloatImage un-mock DriveGetSheetFloatImage method
func (r *Mock) UnMockDriveGetSheetFloatImage() {
r.mockDriveGetSheetFloatImage = nil
}
// GetSheetFloatImageReq ...
type GetSheetFloatImageReq struct {
SpreadSheetToken string `path:"spreadsheet_token" json:"-"` // 表格 token, 示例值: "shtcnmBA*yGehy8"
SheetID string `path:"sheet_id" json:"-"` // 子表 id, 示例值: "0b**12"
FloatImageID string `path:"float_image_id" json:"-"` // 浮动图片 id, 示例值: "ye06SS14ph"
}
// GetSheetFloatImageResp ...
type GetSheetFloatImageResp struct {
FloatImage *GetSheetFloatImageRespFloatImage `json:"float_image,omitempty"` // 浮动图片信息
}
// GetSheetFloatImageRespFloatImage ...
type GetSheetFloatImageRespFloatImage struct {
FloatImageID string `json:"float_image_id,omitempty"` // 浮动图片 id
FloatImageToken string `json:"float_image_token,omitempty"` // [更新时不用传, 创建需要]浮动图片 token, 需要先上传图片到表格获得此 token 之后再进行浮动图片的相关操作
Range string `json:"range,omitempty"` // 浮动图片的左上角单元格定位, 只支持一个单元格
Width float64 `json:"width,omitempty"` // 浮动图片的宽度, 大于等于 20px
Height float64 `json:"height,omitempty"` // 浮动图片的高度, 大于等于 20px
OffsetX float64 `json:"offset_x,omitempty"` // 浮动图片左上角所在位置相对于所在单元格左上角的横向偏移, 大于等于0且小于所在单元格的宽度
OffsetY float64 `json:"offset_y,omitempty"` // 浮动图片左上角所在位置相对于所在单元格左上角的纵向偏移, 大于等于0且小于所在单元格的高度
}
// getSheetFloatImageResp ...
type getSheetFloatImageResp struct {
Code int64 `json:"code,omitempty"` // 错误码, 非 0 表示失败
Msg string `json:"msg,omitempty"` // 错误描述
Data *GetSheetFloatImageResp `json:"data,omitempty"`
Error *ErrorDetail `json:"error,omitempty"`
}