Skip to content

Commit

Permalink
Generated Latest Changes for v2021-02-25
Browse files Browse the repository at this point in the history
  • Loading branch information
DX Codefresh committed Sep 8, 2022
1 parent 2ff5464 commit dffa12a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion openapi/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21302,7 +21302,9 @@ components:
type: integer
description: Represents how many billing cycles are left in a ramp interval.
unit_amount:
type: integer
type: number
format: float
title: Unit price
description: Represents the price for the ramp interval.
TaxInfo:
type: object
Expand Down
2 changes: 1 addition & 1 deletion subscription_ramp_interval_response.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type SubscriptionRampIntervalResponse struct {
RemainingBillingCycles int `json:"remaining_billing_cycles,omitempty"`

// Represents the price for the ramp interval.
UnitAmount int `json:"unit_amount,omitempty"`
UnitAmount float64 `json:"unit_amount,omitempty"`
}

// GetResponse returns the ResponseMetadata that generated this resource
Expand Down

0 comments on commit dffa12a

Please sign in to comment.