dfp-lib
Version:
This project hosts the Node.JS client library for the SOAP-based DFP API at Google.
18 lines (17 loc) • 1.36 kB
TypeScript
import { AudienceSegment } from './audienceSegment';
import { Money } from './money';
import { DateTimeValue } from './dateTimeValue';
import { AudienceSegmentType } from './audienceSegmentType';
import { AudienceSegmentStatus } from './audienceSegmentStatus';
import { AudienceSegmentDataProvider } from './audienceSegmentDataProvider';
import { ThirdPartyAudienceSegmentLicenseType } from './thirdPartyAudienceSegmentLicenseType';
import { ThirdPartyAudienceSegmentAudienceSegmentApprovalStatus } from './thirdPartyAudienceSegmentAudienceSegmentApprovalStatus';
export declare class ThirdPartyAudienceSegment extends AudienceSegment {
protected static XSI_TYPE: string;
approvalStatus: ThirdPartyAudienceSegmentAudienceSegmentApprovalStatus;
cost: Money;
licenseType: ThirdPartyAudienceSegmentLicenseType;
startDateTime: DateTimeValue;
endDateTime: DateTimeValue;
constructor(approvalStatus?: ThirdPartyAudienceSegmentAudienceSegmentApprovalStatus, cost?: Money, licenseType?: ThirdPartyAudienceSegmentLicenseType, startDateTime?: DateTimeValue, endDateTime?: DateTimeValue, id?: number, name?: string, categoryIds?: number[], description?: string, status?: AudienceSegmentStatus, size?: number, mobileWebSize?: number, idfaSize?: number, adIdSize?: number, dataProvider?: AudienceSegmentDataProvider, type?: AudienceSegmentType);
}