-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathinsurance.go
134 lines (118 loc) · 6.31 KB
/
insurance.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
package easypost
import (
"context"
"net/http"
)
// An Insurance object represents insurance for packages purchased both via the
// EasyPost API and shipments purchased through third parties and later
// registered with EasyPost.
type Insurance struct {
ID string `json:"id,omitempty" url:"id,omitempty"`
Object string `json:"object,omitempty" url:"object,omitempty"`
Reference string `json:"reference,omitempty" url:"reference,omitempty"`
Mode string `json:"mode,omitempty" url:"mode,omitempty"`
CreatedAt *DateTime `json:"created_at,omitempty" url:"created_at,omitempty"`
UpdatedAt *DateTime `json:"updated_at,omitempty" url:"updated_at,omitempty"`
Amount string `json:"amount,omitempty" url:"amount,omitempty"`
Carrier string `json:"carrier,omitempty" url:"carrier,omitempty"`
Provider string `json:"provider,omitempty" url:"provider,omitempty"`
ProviderID string `json:"provider_id,omitempty" url:"provider_id,omitempty"`
ShipmentID string `json:"shipment_id,omitempty" url:"shipment_id,omitempty"`
TrackingCode string `json:"tracking_code,omitempty" url:"tracking_code,omitempty"`
Status string `json:"status,omitempty" url:"status,omitempty"`
Tracker *Tracker `json:"tracker,omitempty" url:"tracker,omitempty"`
ToAddress *Address `json:"to_address,omitempty" url:"to_address,omitempty"`
FromAddress *Address `json:"from_address,omitempty" url:"from_address,omitempty"`
Fee *Fee `json:"fee,omitempty" url:"fee,omitempty"`
Messages []string `json:"messages,omitempty" url:"messages,omitempty"`
}
type createInsuranceRequest struct {
Insurance *Insurance `json:"insurance,omitempty" url:"insurance,omitempty"`
}
// ListInsurancesResult holds the results from the list insurances API.
type ListInsurancesResult struct {
Insurances []*Insurance `json:"insurances,omitempty" url:"insurances,omitempty"`
PaginatedCollection
}
// CreateInsurance creates an insurance object for a shipment purchased outside
// EasyPost. ToAddress, FromAddress, TrackingCode and Amount fields must be
// provided. Providing a value in the Carrier field is optional, but can help
// avoid ambiguity and provide a shorter response time.
//
// c := easypost.New(MyEasyPostAPIKey)
// out, err := c.CreateInsurance(
// &easypost.Insurance{
// ToAddress: &easypost.Address{ID: "adr_102"},
// FromAddress: &easypost.Address{ID: "adr_101"},
// TrackingCode: "9400110898825022579493",
// Carrier: "USPS",
// Reference: "insuranceRef1",
// Amount: 100,
// )
func (c *Client) CreateInsurance(in *Insurance) (out *Insurance, err error) {
return c.CreateInsuranceWithContext(context.Background(), in)
}
// CreateInsuranceWithContext performs the same operation as CreateInsurance,
// but allows specifying a context that can interrupt the request.
func (c *Client) CreateInsuranceWithContext(ctx context.Context, in *Insurance) (out *Insurance, err error) {
req := &createInsuranceRequest{Insurance: in}
err = c.do(ctx, http.MethodPost, "insurances", req, &out)
return
}
// ListInsurances provides a paginated result of Insurance objects.
func (c *Client) ListInsurances(opts *ListOptions) (out *ListInsurancesResult, err error) {
return c.ListInsurancesWithContext(context.Background(), opts)
}
// ListInsurancesWithContext performs the same operation as ListInsurances, but
// allows specifying a context that can interrupt the request.
func (c *Client) ListInsurancesWithContext(ctx context.Context, opts *ListOptions) (out *ListInsurancesResult, err error) {
err = c.do(ctx, http.MethodGet, "insurances", opts, &out)
return
}
// GetNextInsurancePage returns the next page of insurance records
func (c *Client) GetNextInsurancePage(collection *ListInsurancesResult) (out *ListInsurancesResult, err error) {
return c.GetNextInsurancePageWithContext(context.Background(), collection)
}
// GetNextInsurancePageWithPageSize returns the next page of insurance records with a specific page size
func (c *Client) GetNextInsurancePageWithPageSize(collection *ListInsurancesResult, pageSize int) (out *ListInsurancesResult, err error) {
return c.GetNextInsurancePageWithPageSizeWithContext(context.Background(), collection, pageSize)
}
// GetNextInsurancePageWithContext performs the same operation as GetNextInsurancePage, but
// allows specifying a context that can interrupt the request.
func (c *Client) GetNextInsurancePageWithContext(ctx context.Context, collection *ListInsurancesResult) (out *ListInsurancesResult, err error) {
return c.GetNextInsurancePageWithPageSizeWithContext(ctx, collection, 0)
}
// GetNextInsurancePageWithPageSizeWithContext performs the same operation as GetNextInsurancePageWithPageSize, but
// allows specifying a context that can interrupt the request.
func (c *Client) GetNextInsurancePageWithPageSizeWithContext(ctx context.Context, collection *ListInsurancesResult, pageSize int) (out *ListInsurancesResult, err error) {
if len(collection.Insurances) == 0 {
err = EndOfPaginationError
return
}
lastID := collection.Insurances[len(collection.Insurances)-1].ID
params, err := nextPageParameters(collection.HasMore, lastID, pageSize)
if err != nil {
return
}
return c.ListInsurancesWithContext(ctx, params)
}
// GetInsurance returns the Insurance object with the given ID or reference.
func (c *Client) GetInsurance(insuranceID string) (out *Insurance, err error) {
return c.GetInsuranceWithContext(context.Background(), insuranceID)
}
// GetInsuranceWithContext performs the same operation as GetInsurance, but
// allows specifying a context that can interrupt the request.
func (c *Client) GetInsuranceWithContext(ctx context.Context, insuranceID string) (out *Insurance, err error) {
err = c.do(ctx, http.MethodGet, "insurances/"+insuranceID, nil, &out)
return
}
// RefundInsurance refunds the Insurance object with the given ID.
func (c *Client) RefundInsurance(insuranceID string) (out *Insurance, err error) {
return c.RefundInsuranceWithContext(context.Background(), insuranceID)
}
// RefundInsuranceWithContext performs the same operation as RefundInsurance, but
// allows specifying a context that can interrupt the request.
func (c *Client) RefundInsuranceWithContext(ctx context.Context, insuranceID string) (out *Insurance, err error) {
err = c.do(ctx, http.MethodPost, "insurances/"+insuranceID+"/refund", nil, &out)
return
}