toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final companionDeliveryType = this.companionDeliveryType;
final creativeRotationType = this.creativeRotationType;
final deliveryRateType = this.deliveryRateType;
final frequencyCap = this.frequencyCap;
final roadblockingType = this.roadblockingType;
return {
'companionDeliveryType': ?companionDeliveryType,
'creativeRotationType': ?creativeRotationType,
'deliveryRateType': ?deliveryRateType,
'frequencyCap': ?frequencyCap,
'roadblockingType': ?roadblockingType,
};
}