Variable previewCreativeConst
previewCreative: {
single: (
fields: Omit<PreviewCreativeSingleResponse, "response_type">,
) => Tagged<PreviewCreativeSingleResponse, "single">;
batch: (
fields: Omit<PreviewCreativeBatchResponse, "response_type">,
) => Tagged<PreviewCreativeBatchResponse, "batch">;
variant: (
fields: Omit<PreviewCreativeVariantResponse, "response_type">,
) => Tagged<PreviewCreativeVariantResponse, "variant">;
} = ...
Type Declaration
Readonlysingle: (
fields: Omit<PreviewCreativeSingleResponse, "response_type">,
) => Tagged<PreviewCreativeSingleResponse, "single">
Readonlybatch: (
fields: Omit<PreviewCreativeBatchResponse, "response_type">,
) => Tagged<PreviewCreativeBatchResponse, "batch">
Readonlyvariant: (
fields: Omit<PreviewCreativeVariantResponse, "response_type">,
) => Tagged<PreviewCreativeVariantResponse, "variant">
Grouped accessor for the three
PreviewCreativeResponsevariants.