GoogleCloudAdvisorynotificationsV1Attachment.fromJson constructor

GoogleCloudAdvisorynotificationsV1Attachment.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAdvisorynotificationsV1Attachment.fromJson(core.Map json_)
    : this(
        csv: json_.containsKey('csv')
            ? GoogleCloudAdvisorynotificationsV1Csv.fromJson(
                json_['csv'] as core.Map<core.String, core.dynamic>)
            : null,
        displayName: json_.containsKey('displayName')
            ? json_['displayName'] as core.String
            : null,
      );