nylas
    Preparing search index...

    Interface Policy

    Interface representing a Nylas Agent Account policy.

    interface Policy {
        applicationId?: string;
        createdAt?: number;
        id: string;
        limits?: PolicyLimits;
        name: string;
        options?: PolicyOptions;
        organizationId?: string;
        rules?: string[];
        spamDetection?: PolicySpamDetection;
        updatedAt?: number;
    }
    Index

    Properties

    applicationId?: string

    The ID of the application that owns the policy.

    createdAt?: number

    Unix timestamp when the policy was created.

    id: string

    Globally unique identifier for the policy.

    limits?: PolicyLimits

    Operational limits enforced for inboxes that use this policy.

    name: string

    Human-readable name for the policy.

    options?: PolicyOptions

    Miscellaneous options for inboxes that use this policy.

    organizationId?: string

    The ID of the Nylas organization that owns the policy.

    rules?: string[]

    Rule IDs linked to this policy for inbound processing.

    spamDetection?: PolicySpamDetection

    Spam detection configuration for inboxes that use this policy.

    updatedAt?: number

    Unix timestamp when the policy was last updated.