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