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

feat(Usage Reports): Update Account Summary #211

Merged
merged 1 commit into from
Jun 1, 2023
Merged
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
5 changes: 5 additions & 0 deletions usage-reports/v4.ts
Original file line number Diff line number Diff line change
Expand Up @@ -827,6 +827,8 @@ namespace UsageReportsV4 {
export interface AccountSummary {
/** The ID of the account. */
account_id: string;
/** The list of account resources for the month. */
account_resources?: Resource[];
/** The month in which usages were incurred. Represented in yyyy-mm format. */
month: string;
/** Country. */
Expand All @@ -839,6 +841,8 @@ namespace UsageReportsV4 {
offers: Offer[];
/** Support-related charges. */
support: SupportSummary[];
/** The list of support resources for the month. */
support_resources?: any[];
/** A summary of charges and credits related to a subscription. */
subscription: SubscriptionSummary;
}
Expand Down Expand Up @@ -1031,6 +1035,7 @@ namespace UsageReportsV4 {
plan_name?: string;
/** The pricing region for the plan. */
pricing_region?: string;
pricing_plan_id?: string;
/** Indicates if the plan charges are billed to the customer. */
billable: boolean;
/** The total cost incurred by the plan. */
Expand Down