interface OfferSubscription {
    cancellationAvailableAt?: Date;
    includedMonthlyEmails: number;
    maxCustomBlocklistsPerDomain: number;
    maxDedicatedIps: number;
    maxDomains: number;
    maxWebhooksPerDomain: number;
    offerName: OfferName;
    organizationId: string;
    projectId: string;
    sla: number;
    subscribedAt?: Date;
}

Properties

cancellationAvailableAt?: Date

Date and time of the end of the offer-subscription commitment.

includedMonthlyEmails: number

Number of emails included in the offer-subscription per month.

maxCustomBlocklistsPerDomain: number

Max number of custom blocklists that can be associated with the offer-subscription for a particular Project.

maxDedicatedIps: number

Max number of dedicated IPs that can be associated with the offer-subscription for a particular Project.

maxDomains: number

Max number of domains that can be associated with the offer-subscription for a particular Project.

maxWebhooksPerDomain: number

Max number of webhooks that can be associated with the offer-subscription for a particular Project.

offerName: OfferName

Name of the offer associated with the Project.

organizationId: string

ID of the offer-subscription Organization.

projectId: string

ID of the offer-subscription Project.

sla: number

Service Level Agreement percentage of the offer-subscription.

subscribedAt?: Date

Date and time of the subscription.