@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
19 lines (17 loc) • 428 B
text/typescript
export enum Type {
CONTENT = 'CONTENT',
OWNERSHIP = 'OWNERSHIP',
OTHER = 'OTHER',
UNKNOWN = 'UNKNOWN',
}
/**
* disapprovalReasons
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202505`
*/
export interface DisapprovalReasons {
/** DisapprovalReason.Type|xsd:string|CONTENT,OWNERSHIP,OTHER,UNKNOWN */
type?: Type | keyof typeof Type
/** xsd:string */
details?: string
}