Skip to content
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
12 changes: 6 additions & 6 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"info_version": "2",
"spec_versions": {
"v1": {
"apigentools_version": "1.5.1.dev2",
"regenerated": "2022-01-17 16:31:48.112752",
"spec_repo_commit": "9f83d50"
"apigentools_version": "1.6.1",
"regenerated": "2022-01-18 09:45:42.968717",
"spec_repo_commit": "33f7cea"
},
"v2": {
"apigentools_version": "1.5.1.dev2",
"regenerated": "2022-01-17 16:31:48.141082",
"spec_repo_commit": "9f83d50"
"apigentools_version": "1.6.1",
"regenerated": "2022-01-18 09:45:42.990540",
"spec_repo_commit": "33f7cea"
}
}
}
4 changes: 2 additions & 2 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12894,7 +12894,7 @@ components:
type: string
end_date:
description: Shows the last date of usage.
format: date-time
format: date
type: string
num_orgs:
description: The number of organizations.
Expand All @@ -12912,7 +12912,7 @@ components:
type: number
start_date:
description: Shows the first date of usage.
format: date-time
format: date
type: string
usage:
$ref: '#/components/schemas/UsageBillableSummaryKeys'
Expand Down
4 changes: 2 additions & 2 deletions docs/v1/UsageBillableSummaryHour.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
| Name | Type | Description | Notes |
| ------------------ | ----------------------------------------------------------- | --------------------------------------------- | ---------- |
| **billing_plan** | **String** | The billing plan. | [optional] |
| **end_date** | **Time** | Shows the last date of usage. | [optional] |
| **end_date** | **Date** | Shows the last date of usage. | [optional] |
| **num_orgs** | **Integer** | The number of organizations. | [optional] |
| **org_name** | **String** | The organization name. | [optional] |
| **public_id** | **String** | The organization public ID. | [optional] |
| **ratio_in_month** | **Float** | Shows usage aggregation for a billing period. | [optional] |
| **start_date** | **Time** | Shows the first date of usage. | [optional] |
| **start_date** | **Date** | Shows the first date of usage. | [optional] |
| **usage** | [**UsageBillableSummaryKeys**](UsageBillableSummaryKeys.md) | | [optional] |

## Example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ def self.acceptable_attributes
def self.openapi_types
{
:'billing_plan' => :'String',
:'end_date' => :'Time',
:'end_date' => :'Date',
:'num_orgs' => :'Integer',
:'org_name' => :'String',
:'public_id' => :'String',
:'ratio_in_month' => :'Float',
:'start_date' => :'Time',
:'start_date' => :'Date',
:'usage' => :'UsageBillableSummaryKeys'
}
end
Expand Down