gads
Version:
An unofficial JS client library for the SOAP-based DFP Ads API
11 lines (10 loc) • 433 B
TypeScript
import { BaseObject } from './baseObject';
import { OriginForwardingType } from './originForwardingType';
import { SecurityPolicyType } from './securityPolicyType';
export interface SecurityPolicySettings extends BaseObject {
securityPolicyType?: SecurityPolicyType;
tokenAuthenticationKey?: string;
disableServerSideUrlSigning?: boolean;
originForwardingType?: OriginForwardingType;
originPathPrefix?: string;
}