@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
21 lines (20 loc) • 469 B
TypeScript
export declare enum Status {
ACTIVE = "ACTIVE",
INACTIVE = "INACTIVE",
UNKNOWN = "UNKNOWN"
}
/**
* rval
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202411`
*/
export interface Rval {
/** xsd:long */
id?: number;
/** xsd:string */
name?: string;
/** xsd:string */
description?: string;
/** RoleStatus|xsd:string|ACTIVE,INACTIVE,UNKNOWN */
status?: Status | keyof typeof Status;
}