-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathapi_application_order_get.go
92 lines (81 loc) · 4.71 KB
/
api_application_order_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
92
// 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"
)
// GetApplicationOrder 该接口用于查询某个订单的具体信息
//
// doc: https://open.feishu.cn/document/ukTMukTMukTM/uITNwUjLyUDM14iM1ATN
// new doc: https://open.feishu.cn/document/server-docs/application-v6/appstore-paid-info/query-order-information
func (r *ApplicationService) GetApplicationOrder(ctx context.Context, request *GetApplicationOrderReq, options ...MethodOptionFunc) (*GetApplicationOrderResp, *Response, error) {
if r.cli.mock.mockApplicationGetApplicationOrder != nil {
r.cli.Log(ctx, LogLevelDebug, "[lark] Application#GetApplicationOrder mock enable")
return r.cli.mock.mockApplicationGetApplicationOrder(ctx, request, options...)
}
req := &RawRequestReq{
Scope: "Application",
API: "GetApplicationOrder",
Method: "GET",
URL: r.cli.openBaseURL + "/open-apis/pay/v1/order/get",
Body: request,
MethodOption: newMethodOption(options),
NeedTenantAccessToken: true,
}
resp := new(getApplicationOrderResp)
response, err := r.cli.RawRequest(ctx, req, resp)
return resp.Data, response, err
}
// MockApplicationGetApplicationOrder mock ApplicationGetApplicationOrder method
func (r *Mock) MockApplicationGetApplicationOrder(f func(ctx context.Context, request *GetApplicationOrderReq, options ...MethodOptionFunc) (*GetApplicationOrderResp, *Response, error)) {
r.mockApplicationGetApplicationOrder = f
}
// UnMockApplicationGetApplicationOrder un-mock ApplicationGetApplicationOrder method
func (r *Mock) UnMockApplicationGetApplicationOrder() {
r.mockApplicationGetApplicationOrder = nil
}
// GetApplicationOrderReq ...
type GetApplicationOrderReq struct {
OrderID string `query:"order_id" json:"-"` // 订单ID
}
// GetApplicationOrderResp ...
type GetApplicationOrderResp struct {
Order *GetApplicationOrderRespOrder `json:"order,omitempty"` // 订单信息
}
// GetApplicationOrderRespOrder ...
type GetApplicationOrderRespOrder struct {
OrderID string `json:"order_id,omitempty"` // 订单ID, 唯一标识
PricePlanID string `json:"price_plan_id,omitempty"` // 价格方案ID, 唯一标识
PricePlanType string `json:"price_plan_type,omitempty"` // 价格方案类型 "trial" -试用;"permanent"-一次性付费;"per_year"-企业年付费;"per_month"-企业月付费;"per_seat_per_year"-按人按年付费;"per_seat_per_month"-按人按月付费;"permanent_count"-按次付费;
Seats int64 `json:"seats,omitempty"` // 实际购买人数 仅对price_plan_type为per_seat_per_year和per_seat_per_month 有效
BuyCount int64 `json:"buy_count,omitempty"` // 购买数量 总是为1
CreateTime string `json:"create_time,omitempty"` // 订单创建时间戳
PayTime string `json:"pay_time,omitempty"` // 订单支付时间戳
Status string `json:"status,omitempty"` // 订单当前状态, "normal" -正常;"refund"-已退款;
BuyType string `json:"buy_type,omitempty"` // 购买类型, "buy" - 普通购买;"upgrade"-为升级购买(仅price_plan_type 为per_year, per_month, per_seat_per_year, per_seat_per_month时可升级购买);"renew" - 续费购买;
SrcOrderID string `json:"src_order_id,omitempty"` // 源订单ID, 当前订单为升级购买时, 即buy_type为upgrade时, 此字段记录源订单等ID
DstOrderID string `json:"dst_order_id,omitempty"` // 升级后的新订单ID, 当前订单如果做过升级购买, 此字段记录升级购买后生成的新订单ID, 当前订单仍然有效
OrderPayPrice int64 `json:"order_pay_price,omitempty"` // 订单实际支付金额, 单位分
TenantKey string `json:"tenant_key,omitempty"` // 租户唯一标识
}
// getApplicationOrderResp ...
type getApplicationOrderResp struct {
Code int64 `json:"code,omitempty"` // 返回码, 非 0 表示失败
Msg string `json:"msg,omitempty"` // 返回码的描述
Data *GetApplicationOrderResp `json:"data,omitempty"` // 返回的业务信息
Error *ErrorDetail `json:"error,omitempty"`
}