47 lines
770 B
TypeScript
47 lines
770 B
TypeScript
export interface StatusListItem {
|
|
id: string;
|
|
name: string;
|
|
statusorder: string;
|
|
color: string;
|
|
isdefault: string;
|
|
}
|
|
|
|
export interface SourceListItem {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
|
|
export interface CountryListItem {
|
|
country_id: string;
|
|
iso2: string;
|
|
short_name: string;
|
|
long_name: string;
|
|
iso3: string;
|
|
numcode: string;
|
|
un_member: string;
|
|
calling_code: string;
|
|
cctld: string;
|
|
}
|
|
|
|
export interface LanguageListItem {
|
|
id: string;
|
|
value: string;
|
|
}
|
|
|
|
export interface CurrencyItem {
|
|
id: string;
|
|
symbol: string;
|
|
name: string;
|
|
decimal_separator: string;
|
|
thousand_separator: string;
|
|
placement: string;
|
|
isdefault: string;
|
|
}
|
|
|
|
export interface CurrencyListResponse {
|
|
base_currency: CurrencyItem;
|
|
currencies: CurrencyItem[];
|
|
}
|
|
|
|
|