-
Notifications
You must be signed in to change notification settings - Fork 460
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1911 from stripe/latest-codegen-beta
Update generated code for beta
- Loading branch information
Showing
22 changed files
with
551 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,10 @@ jobs: | |
strategy: | ||
matrix: | ||
go: | ||
- "1.23" | ||
- "1.22" | ||
- "1.21" | ||
- "1.20" | ||
- "1.19" | ||
- "1.18" | ||
- "1.17" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v1247 | ||
v1259 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
// | ||
// | ||
// File generated from our OpenAPI spec | ||
// | ||
// | ||
|
||
package stripe | ||
|
||
// The status of the template, one of `active` or `archived`. | ||
type InvoiceRenderingTemplateStatus string | ||
|
||
// List of values that InvoiceRenderingTemplateStatus can take | ||
const ( | ||
InvoiceRenderingTemplateStatusActive InvoiceRenderingTemplateStatus = "active" | ||
InvoiceRenderingTemplateStatusArchived InvoiceRenderingTemplateStatus = "archived" | ||
) | ||
|
||
// List all templates, ordered by creation date, with the most recently created template appearing first. | ||
type InvoiceRenderingTemplateListParams struct { | ||
ListParams `form:"*"` | ||
// Specifies which fields in the response should be expanded. | ||
Expand []*string `form:"expand"` | ||
Status *string `form:"status"` | ||
} | ||
|
||
// AddExpand appends a new field to expand. | ||
func (p *InvoiceRenderingTemplateListParams) AddExpand(f string) { | ||
p.Expand = append(p.Expand, &f) | ||
} | ||
|
||
// Retrieves an invoice rendering template with the given ID. It by default returns the latest version of the template. Optionally, specify a version to see previous versions. | ||
type InvoiceRenderingTemplateParams struct { | ||
Params `form:"*"` | ||
// Specifies which fields in the response should be expanded. | ||
Expand []*string `form:"expand"` | ||
Version *int64 `form:"version"` | ||
} | ||
|
||
// AddExpand appends a new field to expand. | ||
func (p *InvoiceRenderingTemplateParams) AddExpand(f string) { | ||
p.Expand = append(p.Expand, &f) | ||
} | ||
|
||
// Updates the status of an invoice rendering template to ‘archived' so no new Stripe objects (customers, invoices, etc.) can reference it. The template can also no longer be updated. However, if the template is already set on a Stripe object, it will continue to be applied on invoices generated by it. | ||
type InvoiceRenderingTemplateArchiveParams 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 *InvoiceRenderingTemplateArchiveParams) AddExpand(f string) { | ||
p.Expand = append(p.Expand, &f) | ||
} | ||
|
||
// Unarchive an invoice rendering template so it can be used on new Stripe objects again. | ||
type InvoiceRenderingTemplateUnarchiveParams 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 *InvoiceRenderingTemplateUnarchiveParams) AddExpand(f string) { | ||
p.Expand = append(p.Expand, &f) | ||
} | ||
|
||
type InvoiceRenderingTemplate struct { | ||
APIResource | ||
// Time at which the object was created. Measured in seconds since the Unix epoch. | ||
Created int64 `json:"created"` | ||
// Unique identifier for the object. | ||
ID string `json:"id"` | ||
// Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode. | ||
Livemode bool `json:"livemode"` | ||
// Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. | ||
Metadata map[string]string `json:"metadata"` | ||
// A brief description of the template, hidden from customers | ||
Nickname string `json:"nickname"` | ||
// String representing the object's type. Objects of the same type share the same value. | ||
Object string `json:"object"` | ||
// The status of the template, one of `active` or `archived`. | ||
Status InvoiceRenderingTemplateStatus `json:"status"` | ||
// Version of this template; version increases by one when an update on the template changes any field that controls invoice rendering | ||
Version int64 `json:"version"` | ||
} | ||
|
||
// InvoiceRenderingTemplateList is a list of InvoiceRenderingTemplates as retrieved from a list endpoint. | ||
type InvoiceRenderingTemplateList struct { | ||
APIResource | ||
ListMeta | ||
Data []*InvoiceRenderingTemplate `json:"data"` | ||
} |
Oops, something went wrong.