Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generated Latest Changes for v2021-02-25 #214

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion invoice.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ type Invoice struct {
// Optionally supplied string that may be either `net` or `eom` (end-of-month).
// When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date.
// When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month.
// This field is only available when the EOM Net Terms feature is enabled.
NetTermsType string `json:"net_terms_type,omitempty"`

Address InvoiceAddress `json:"address,omitempty"`
Expand Down
1 change: 0 additions & 1 deletion invoice_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ type InvoiceCreate struct {
// Optionally supplied string that may be either `net` or `eom` (end-of-month).
// When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date.
// When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month.
// This field is only available when the EOM Net Terms feature is enabled.
NetTermsType *string `json:"net_terms_type,omitempty"`

// For manual invoicing, this identifies the PO number associated with the subscription.
Expand Down
2 changes: 0 additions & 2 deletions openapi/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25178,8 +25178,6 @@ components:
Optionally supplied string that may be either `net` or `eom` (end-of-month).
When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date.
When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month.

This field is only available when the EOM Net Terms feature is enabled.
enum:
- net
- eom
Expand Down
1 change: 0 additions & 1 deletion purchase_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ type PurchaseCreate struct {
// Optionally supplied string that may be either `net` or `eom` (end-of-month).
// When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date.
// When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month.
// This field is only available when the EOM Net Terms feature is enabled.
NetTermsType *string `json:"net_terms_type,omitempty"`

// Terms and conditions to be put on the purchase invoice.
Expand Down
1 change: 0 additions & 1 deletion subscription.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ type Subscription struct {
// Optionally supplied string that may be either `net` or `eom` (end-of-month).
// When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date.
// When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month.
// This field is only available when the EOM Net Terms feature is enabled.
NetTermsType string `json:"net_terms_type,omitempty"`

// Terms and conditions
Expand Down
1 change: 0 additions & 1 deletion subscription_change_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ type SubscriptionChangeCreate struct {
// Optionally supplied string that may be either `net` or `eom` (end-of-month).
// When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date.
// When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month.
// This field is only available when the EOM Net Terms feature is enabled.
NetTermsType *string `json:"net_terms_type,omitempty"`

// An optional type designation for the payment gateway transaction created by this request. Supports 'moto' value, which is the acronym for mail order and telephone transactions.
Expand Down
1 change: 0 additions & 1 deletion subscription_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ type SubscriptionCreate struct {
// Optionally supplied string that may be either `net` or `eom` (end-of-month).
// When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date.
// When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month.
// This field is only available when the EOM Net Terms feature is enabled.
NetTermsType *string `json:"net_terms_type,omitempty"`

// If present, this subscription's transactions will use the payment gateway with this code.
Expand Down
1 change: 0 additions & 1 deletion subscription_update.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ type SubscriptionUpdate struct {
// Optionally supplied string that may be either `net` or `eom` (end-of-month).
// When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date.
// When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month.
// This field is only available when the EOM Net Terms feature is enabled.
NetTermsType *string `json:"net_terms_type,omitempty"`

// If present, this subscription's transactions will use the payment gateway with this code.
Expand Down
Loading