wallee
Version:
TypeScript/JavaScript client for wallee
36 lines (35 loc) • 974 B
TypeScript
import { LocalizedString } from "./LocalizedString";
declare class LegalOrganizationForm {
/**
* The two-letter code of the country the legal organization form is used in (ISO 3166-1 alpha-2 format).
*/
'country'?: string;
/**
* The localized descriptions of the legal organization form.
*/
'description'?: Array<LocalizedString>;
/**
* The English name of the legal organization form.
*/
'englishDescription'?: string;
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The localized shortcuts of the legal organization form.
*/
'shortcut'?: Array<LocalizedString>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { LegalOrganizationForm };