@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
18 lines (16 loc) • 419 B
text/typescript
export enum DeclarationType {
NONE = 'NONE',
DECLARED = 'DECLARED',
UNKNOWN = 'UNKNOWN',
}
/**
* rval
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202505`
*/
export interface Rval1 {
/** DeclarationType|xsd:string|NONE,DECLARED,UNKNOWN */
declarationType?: DeclarationType | keyof typeof DeclarationType
/** xsd:long */
thirdPartyCompanyIds?: Array<number>
}