24 lines
722 B
TypeScript
24 lines
722 B
TypeScript
import type { AccountDetailsResponseDto } from '../types';
|
|
|
|
const ACCOUNT_DETAILS_MOCK: AccountDetailsResponseDto = {
|
|
data: {
|
|
organization: 'ООО "ВеллЭнерджи"',
|
|
inn: '781633333333',
|
|
kpp: '773601001',
|
|
ogrn: '1029665556574',
|
|
account: '40522210012345',
|
|
bik: '044521234',
|
|
bankName: 'ООО "Банк"',
|
|
correspondentAccount: '30176550605316000601',
|
|
|
|
beneficiary: 'ООО "ВеллЭнерджи"',
|
|
beneficiaryAccount: '40522210012345',
|
|
beneficiaryTransitAccount: '12342543212345',
|
|
swiftCode: 'SWIFT',
|
|
beneficiaryBank: 'ООО "Банк"',
|
|
beneficiaryBankAddress: 'г. Москва, ул. Пушкина, д. 1',
|
|
},
|
|
};
|
|
|
|
export { ACCOUNT_DETAILS_MOCK };
|