@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: DateContainer;
        enddate?: DateContainer;
        future?: "0" | "1";
        past?: "0" | "1";
        rate: number;
        startdate?: DateContainer;
        symbol: string;
        updated: DateContainer;
    }
    Index

    Properties

    base?: string

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

    created: DateContainer

    [Read-only] Date the record was created.

    enddate?: DateContainer

    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?: DateContainer

    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: DateContainer

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