GoogleAdsSearchads360V23ServicesMutateConversionCustomVariableResult.fromJson constructor

GoogleAdsSearchads360V23ServicesMutateConversionCustomVariableResult.fromJson(
  1. Map json_
)

Implementation

GoogleAdsSearchads360V23ServicesMutateConversionCustomVariableResult.fromJson(
  core.Map json_,
) : this(
      conversionCustomVariable: json_.containsKey('conversionCustomVariable')
          ? GoogleAdsSearchads360V23ResourcesConversionCustomVariable.fromJson(
              json_['conversionCustomVariable']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      resourceName: json_['resourceName'] as core.String?,
    );