GoogleAdsSearchads360V23ServicesMutateLabelResult.fromJson constructor

GoogleAdsSearchads360V23ServicesMutateLabelResult.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23ServicesMutateLabelResult.fromJson(core.Map json_)
  : this(
      label: json_.containsKey('label')
          ? GoogleAdsSearchads360V23ResourcesLabel.fromJson(
              json_['label'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      resourceName: json_['resourceName'] as core.String?,
    );