-
Notifications
You must be signed in to change notification settings - Fork 471
/
Copy pathtesthelpersissuing_card.go
55 lines (46 loc) · 1.64 KB
/
testhelpersissuing_card.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
//
//
// File generated from our OpenAPI spec
//
//
package stripe
// Updates the shipping status of the specified Issuing Card object to delivered.
type TestHelpersIssuingCardDeliverCardParams struct {
Params `form:"*"`
// Specifies which fields in the response should be expanded.
Expand []*string `form:"expand"`
}
// AddExpand appends a new field to expand.
func (p *TestHelpersIssuingCardDeliverCardParams) AddExpand(f string) {
p.Expand = append(p.Expand, &f)
}
// Updates the shipping status of the specified Issuing Card object to failure.
type TestHelpersIssuingCardFailCardParams struct {
Params `form:"*"`
// Specifies which fields in the response should be expanded.
Expand []*string `form:"expand"`
}
// AddExpand appends a new field to expand.
func (p *TestHelpersIssuingCardFailCardParams) AddExpand(f string) {
p.Expand = append(p.Expand, &f)
}
// Updates the shipping status of the specified Issuing Card object to returned.
type TestHelpersIssuingCardReturnCardParams struct {
Params `form:"*"`
// Specifies which fields in the response should be expanded.
Expand []*string `form:"expand"`
}
// AddExpand appends a new field to expand.
func (p *TestHelpersIssuingCardReturnCardParams) AddExpand(f string) {
p.Expand = append(p.Expand, &f)
}
// Updates the shipping status of the specified Issuing Card object to shipped.
type TestHelpersIssuingCardShipCardParams struct {
Params `form:"*"`
// Specifies which fields in the response should be expanded.
Expand []*string `form:"expand"`
}
// AddExpand appends a new field to expand.
func (p *TestHelpersIssuingCardShipCardParams) AddExpand(f string) {
p.Expand = append(p.Expand, &f)
}