@raisenow/tamaro-core
    Preparing search index...

    Type Alias EpmsPaymentObject

    type EpmsPaymentObject = {
        account_uuid?: string;
        amount?: { currency?: string; value?: number };
        create_payment_source?: boolean;
        create_supporter?: boolean;
        custom_parameters?: EpmsCustomParameters;
        hmac?: { timestamp?: number; value?: string };
        payment_information?: Record<string, any>;
        payment_method?: string;
        profile?: string;
        raisenow_parameters?: EpmsRaisenowParameters;
        return_url?: string;
        statement_descriptor?: string;
        subscription?: {
            custom_parameters?: EpmsCustomParameters;
            planned_effective_from?: string;
            planned_end?: string;
            raisenow_parameters?: EpmsRaisenowParameters;
            recurring_interval?: string;
            timezone?: string;
        };
        supporter?: EpmsSupporterInfo & {
            custom_parameters?: Record<string, string>;
            locale?: string;
            raisenow_parameters?: Record<string, any> & {
                fundraising_automation?: Record<string, any>;
                integration?: { opt_in?: { email?: boolean } };
            };
        };
        test_mode?: boolean;
    }
    Index

    Properties

    account_uuid?: string
    amount?: { currency?: string; value?: number }
    create_payment_source?: boolean
    create_supporter?: boolean
    custom_parameters?: EpmsCustomParameters
    hmac?: { timestamp?: number; value?: string }
    payment_information?: Record<string, any>
    payment_method?: string
    profile?: string
    raisenow_parameters?: EpmsRaisenowParameters
    return_url?: string
    statement_descriptor?: string
    subscription?: {
        custom_parameters?: EpmsCustomParameters;
        planned_effective_from?: string;
        planned_end?: string;
        raisenow_parameters?: EpmsRaisenowParameters;
        recurring_interval?: string;
        timezone?: string;
    }
    supporter?: EpmsSupporterInfo & {
        custom_parameters?: Record<string, string>;
        locale?: string;
        raisenow_parameters?: Record<string, any> & {
            fundraising_automation?: Record<string, any>;
            integration?: { opt_in?: { email?: boolean } };
        };
    }
    test_mode?: boolean