Type alias ListCurrenciesResponse

ListCurrenciesResponse: {
    data: {
        code?: string;
        id?: number;
        name?: string;
        symbol?: string;
    }[];
    errors: string[];
    success: boolean;
}

Type declaration

  • data: {
        code?: string;
        id?: number;
        name?: string;
        symbol?: string;
    }[]

    List of available currencies

  • errors: string[]

    If the operation was not successful, holds the deatils of errors

  • success: boolean

    Indicates whether the operation was successful or not