@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
17 lines (16 loc) • 482 B
TypeScript
export declare enum DeclarationType {
NONE = "NONE",
DECLARED = "DECLARED",
UNKNOWN = "UNKNOWN"
}
/**
* thirdPartyDataDeclaration
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202502`
*/
export interface ThirdPartyDataDeclaration {
/** DeclarationType|xsd:string|NONE,DECLARED,UNKNOWN */
declarationType?: DeclarationType | keyof typeof DeclarationType;
/** xsd:long */
thirdPartyCompanyIds?: Array<number>;
}