@theredspace/spp-client
    Preparing search index...

    Interface ForexInput

    A company override for historical or future FX rates when Multi-currency is enabled. Supports Add, Read, Modify, Upsert.

    interface ForexInput {
        base?: string;
        created: string;
        enddate?: string;
        future?: "0" | "1";
        past?: "0" | "1";
        rate: number;
        startdate?: string;
        symbol: string;
        updated: string;
    }
    Index

    Properties

    base?: string

    [Optional] Base currency symbol (must be a user-defined reporting currency).

    created: string

    [Read-only] Date the record was created.

    enddate?: string

    Last date in the FX rate range (empty if future/past flag set).

    future?: "0" | "1"

    If 1, this entry applies to dates after the last in the table.

    past?: "0" | "1"

    If 1, this entry applies to dates prior to the first in the table.

    rate: number

    The exchange rate to apply (custom_): quote currency per one base unit.

    startdate?: string

    First date in the FX rate range (empty if future/past flag set).

    symbol: string

    Counter-currency symbol (used to build the custom_<symbol> field).

    updated: string

    [Read-only] Date the record was last updated.