$CmHybridConfig.fromJson constructor

$CmHybridConfig.fromJson(
  1. Map json_
)

Implementation

$CmHybridConfig.fromJson(core.Map json_)
  : this(
      cmAccountId: json_['cmAccountId'] as core.String?,
      cmAdvertiserIds:
          (json_['cmAdvertiserIds'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      cmFloodlightConfigId: json_['cmFloodlightConfigId'] as core.String?,
      cmFloodlightLinkingAuthorized:
          json_['cmFloodlightLinkingAuthorized'] as core.bool?,
      cmSyncableSiteIds:
          (json_['cmSyncableSiteIds'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      dv360ToCmCostReportingEnabled:
          json_['dv360ToCmCostReportingEnabled'] as core.bool?,
      dv360ToCmDataSharingEnabled:
          json_['dv360ToCmDataSharingEnabled'] as core.bool?,
    );