@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
19 lines (18 loc) • 437 B
TypeScript
export declare enum Status {
ACTIVE = "ACTIVE",
INACTIVE = "INACTIVE",
UNKNOWN = "UNKNOWN"
}
/**
* results
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202408`
*/
export interface Results {
/** xsd:long */
id?: number;
/** xsd:string */
name?: string;
/** CmsMetadataKeyStatus|xsd:string|ACTIVE,INACTIVE,UNKNOWN */
status?: Status | keyof typeof Status;
}