import { SessionInfoAntiFraudPixel } from './sessionInfoAntiFraudPixel'; import { MethodType } from './methodType'; export interface SessionInfo { /** * The name of the project to which the session belongs */ projectName: string; /** * Brief description of the payment */ description: string; /** * Currency to be selected by default */ defaultCurrency?: string; /** * Back url */ returnUrl: string; antiFraudPixel?: SessionInfoAntiFraudPixel; methodTypes: Array; /** * Is it possible to edit amount */ amountEditable: boolean; }