-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathapi_hire_attachment_get.go
85 lines (74 loc) · 3.58 KB
/
api_hire_attachment_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
// 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"
)
// GetHireAttachment 根据人才简历附件 ID 获取招聘系统中附件的元信息, 比如文件名、创建时间、文件 URL 等, 可通过[获取人才信息接口](https://open.feishu.cn/document/server-docs/hire-v1/candidate-management/talent/get)获取人才的简历附件
//
// doc: https://open.feishu.cn/document/ukTMukTMukTM/uMzM1YjLzMTN24yMzUjN/hire-v1/attachment/get
// new doc: https://open.feishu.cn/document/server-docs/hire-v1/attachment/get
func (r *HireService) GetHireAttachment(ctx context.Context, request *GetHireAttachmentReq, options ...MethodOptionFunc) (*GetHireAttachmentResp, *Response, error) {
if r.cli.mock.mockHireGetHireAttachment != nil {
r.cli.Log(ctx, LogLevelDebug, "[lark] Hire#GetHireAttachment mock enable")
return r.cli.mock.mockHireGetHireAttachment(ctx, request, options...)
}
req := &RawRequestReq{
Scope: "Hire",
API: "GetHireAttachment",
Method: "GET",
URL: r.cli.openBaseURL + "/open-apis/hire/v1/attachments/:attachment_id",
Body: request,
MethodOption: newMethodOption(options),
NeedTenantAccessToken: true,
}
resp := new(getHireAttachmentResp)
response, err := r.cli.RawRequest(ctx, req, resp)
return resp.Data, response, err
}
// MockHireGetHireAttachment mock HireGetHireAttachment method
func (r *Mock) MockHireGetHireAttachment(f func(ctx context.Context, request *GetHireAttachmentReq, options ...MethodOptionFunc) (*GetHireAttachmentResp, *Response, error)) {
r.mockHireGetHireAttachment = f
}
// UnMockHireGetHireAttachment un-mock HireGetHireAttachment method
func (r *Mock) UnMockHireGetHireAttachment() {
r.mockHireGetHireAttachment = nil
}
// GetHireAttachmentReq ...
type GetHireAttachmentReq struct {
AttachmentID string `path:"attachment_id" json:"-"` // 附件id, 示例值: "6435242341238"
Type *int64 `query:"type" json:"-"` // 附件类型, 示例值: 1, 可选值有: 1: 附件简历, 2: 候选人作品, 3: 自定义附件, 默认值: `1`
}
// GetHireAttachmentResp ...
type GetHireAttachmentResp struct {
Attachment *GetHireAttachmentRespAttachment `json:"attachment,omitempty"` // 附件信息
}
// GetHireAttachmentRespAttachment ...
type GetHireAttachmentRespAttachment struct {
ID string `json:"id,omitempty"` // 附件id
URL string `json:"url,omitempty"` // 附件的url
Name string `json:"name,omitempty"` // 附件文件名
Mime string `json:"mime,omitempty"` // 媒体类型/MIME
CreateTime int64 `json:"create_time,omitempty"` // 附件创建时间(单位ms)
}
// getHireAttachmentResp ...
type getHireAttachmentResp struct {
Code int64 `json:"code,omitempty"` // 错误码, 非 0 表示失败
Msg string `json:"msg,omitempty"` // 错误描述
Data *GetHireAttachmentResp `json:"data,omitempty"`
Error *ErrorDetail `json:"error,omitempty"`
}