@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
65 lines (64 loc) • 1.87 kB
TypeScript
import { Address } from './address';
import { FinancialReport } from './financialReport';
import { TaxInformation } from './taxInformation';
export declare class SoleProprietorship {
/**
* The two-character [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code of the governing country.
*/
'countryOfGoverningLaw': string;
/**
* The date when the legal arrangement was incorporated in YYYY-MM-DD format.
*/
'dateOfIncorporation'?: string;
/**
* The registered name, if different from the `name`.
*/
'doingBusinessAs'?: string;
/**
* The information from the financial report of the sole proprietorship.
*/
'financialReports'?: Array<FinancialReport>;
/**
* The legal name.
*/
'name': string;
'principalPlaceOfBusiness'?: Address | null;
'registeredAddress': Address;
/**
* The registration number.
*/
'registrationNumber'?: string;
/**
* The tax information is absent.
*/
'taxAbsent'?: boolean | null;
/**
* The tax information of the entity.
*/
'taxInformation'?: Array<TaxInformation>;
/**
* The reason for not providing a VAT number. Possible values: **industryExemption**, **belowTaxThreshold**.
*/
'vatAbsenceReason'?: SoleProprietorship.VatAbsenceReasonEnum;
/**
* The VAT number.
*/
'vatNumber'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace SoleProprietorship {
enum VatAbsenceReasonEnum {
IndustryExemption = "industryExemption",
BelowTaxThreshold = "belowTaxThreshold"
}
}