UNPKG

@dmgt/google-ad-manager-api

Version:
17 lines (16 loc) 482 B
export declare enum DeclarationType { NONE = "NONE", DECLARED = "DECLARED", UNKNOWN = "UNKNOWN" } /** * thirdPartyDataDeclaration * @targetNSAlias `tns` * @targetNamespace `https://www.google.com/apis/ads/publisher/v202505` */ export interface ThirdPartyDataDeclaration { /** DeclarationType|xsd:string|NONE,DECLARED,UNKNOWN */ declarationType?: DeclarationType | keyof typeof DeclarationType; /** xsd:long */ thirdPartyCompanyIds?: Array<number>; }