GoogleCloudBillingBudgetsV1NotificationsRule.fromJson constructor

GoogleCloudBillingBudgetsV1NotificationsRule.fromJson(
  1. Map json_
)

Implementation

GoogleCloudBillingBudgetsV1NotificationsRule.fromJson(core.Map json_)
    : this(
        disableDefaultIamRecipients:
            json_['disableDefaultIamRecipients'] as core.bool?,
        enableProjectLevelRecipients:
            json_['enableProjectLevelRecipients'] as core.bool?,
        monitoringNotificationChannels:
            (json_['monitoringNotificationChannels'] as core.List?)
                ?.map((value) => value as core.String)
                .toList(),
        pubsubTopic: json_['pubsubTopic'] as core.String?,
        schemaVersion: json_['schemaVersion'] as core.String?,
      );