GoogleCloudBillingBudgetsV1BudgetAmount.fromJson constructor
GoogleCloudBillingBudgetsV1BudgetAmount.fromJson(
- Map json_
Implementation
GoogleCloudBillingBudgetsV1BudgetAmount.fromJson(core.Map json_)
: this(
lastPeriodAmount: json_.containsKey('lastPeriodAmount')
? GoogleCloudBillingBudgetsV1LastPeriodAmount.fromJson(
json_['lastPeriodAmount']
as core.Map<core.String, core.dynamic>)
: null,
specifiedAmount: json_.containsKey('specifiedAmount')
? GoogleTypeMoney.fromJson(json_['specifiedAmount']
as core.Map<core.String, core.dynamic>)
: null,
);