UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

82 lines (81 loc) 2.49 kB
import { Address } from "./address"; import { BankAccount } from "./bankAccount"; import { Card } from "./card"; import { Name } from "./name"; import { Recurring } from "./recurring"; export declare class StoreDetailRequest { /** * This field contains additional data, which may be required for a particular request. */ "additionalData"?: { [key: string]: string; }; "bank"?: BankAccount | null; "billingAddress"?: Address | null; "card"?: Card | null; /** * The date of birth. Format: [ISO-8601](https://www.w3.org/TR/NOTE-datetime); example: YYYY-MM-DD For Paysafecard it must be the same as used when registering the Paysafecard account. > This field is mandatory for natural persons. */ "dateOfBirth": string; /** * The type of the entity the payout is processed for. */ "entityType": StoreDetailRequest.EntityTypeEnum; /** * An integer value that is added to the normal fraud score. The value can be either positive or negative. */ "fraudOffset"?: number; /** * The merchant account identifier, with which you want to process the transaction. */ "merchantAccount": string; /** * The shopper\'s nationality. A valid value is an ISO 2-character country code (e.g. \'NL\'). */ "nationality": string; "recurring": Recurring; /** * The name of the brand to make a payout to. For Paysafecard it must be set to `paysafecard`. */ "selectedBrand"?: string; /** * The shopper\'s email address. */ "shopperEmail": string; "shopperName"?: Name | null; /** * The shopper\'s reference for the payment transaction. */ "shopperReference": string; /** * The shopper\'s social security number. */ "socialSecurityNumber"?: string; /** * The shopper\'s phone number. */ "telephoneNumber"?: string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare namespace StoreDetailRequest { enum EntityTypeEnum { NaturalPerson = "NaturalPerson", Company = "Company" } }