@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
54 lines (53 loc) • 2.66 kB
TypeScript
import { StoreLocation } from "./storeLocation";
import { StoreSplitConfiguration } from "./storeSplitConfiguration";
import { SubMerchantData } from "./subMerchantData";
export declare class StoreCreationWithMerchantCodeRequest {
"address": StoreLocation;
/**
* The unique identifiers of the [business lines](https://docs.adyen.com/api-explorer/legalentity/latest/post/businessLines#responses-200-id) that the store is associated with. If not specified, the business line of the merchant account is used. Required when there are multiple business lines under the merchant account.
*/
"businessLineIds"?: Array<string>;
/**
* Your description of the store.
*/
"description": string;
/**
* The unique identifier of the store, used by certain payment methods and tax authorities. Required for CNPJ in Brazil, in the format 00.000.000/0000-00 separated by dots, slashes, hyphens, or without separators. Optional for SIRET in France, up to 14 digits. Optional for Zip in Australia, up to 50 digits.
*/
"externalReferenceId"?: string;
/**
* The unique identifier of the merchant account that the store belongs to.
*/
"merchantId": string;
/**
* The phone number of the store, including \'+\' and country code in the [E.164](https://en.wikipedia.org/wiki/E.164) format. If passed in a different format, we convert and validate the phone number against E.164.
*/
"phoneNumber": string;
/**
* Your reference to recognize the store by. Also known as the store code. Allowed characters: lowercase and uppercase letters without diacritics, numbers 0 through 9, hyphen (-), and underscore (_). If you do not provide a reference in your POST request, it is populated with the Adyen-generated [id](https://docs.adyen.com/api-explorer/Management/latest/post/stores#responses-200-id).
*/
"reference"?: string;
/**
* The store name to be shown on the shopper\'s bank or credit card statement and on the shopper receipt. Maximum length: 22 characters; can\'t be all numbers.
*/
"shopperStatement": string;
"splitConfiguration"?: StoreSplitConfiguration | null;
"subMerchantData"?: SubMerchantData | null;
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();
}