@dmgt/google-ad-manager-api
Version:
Typed Google Ad Manager API
21 lines (20 loc) • 556 B
TypeScript
export declare enum ReportingType {
DISABLED = "DISABLED",
CLIENT = "CLIENT",
SERVER = "SERVER",
AD_MEDIA = "AD_MEDIA",
UNKNOWN = "UNKNOWN"
}
/**
* streamCreateRequest
* @targetNSAlias `tns`
* @targetNamespace `https://www.google.com/apis/ads/publisher/v202502`
*/
export interface StreamCreateRequest {
/** xsd:string */
url?: string;
/** xsd:string */
userAgent?: string;
/** ReportingType|xsd:string|DISABLED,CLIENT,SERVER,AD_MEDIA,UNKNOWN */
reportingType?: ReportingType | keyof typeof ReportingType;
}