interface IOrganizationData {
    bank_account: IBankAccount;
    block_num?: number;
    city: string;
    country: Country;
    deleted?: boolean;
    details: Details;
    email: string;
    full_address: string;
    full_name: string;
    is_cooperative: boolean;
    phone: string;
    represented_by: {
        based_on: string;
        first_name: string;
        last_name: string;
        middle_name: string;
        position: string;
    };
    short_name: string;
    type: "coop" | "ooo" | "oao" | "zao" | "pao" | "ao";
    username: string;
}

Hierarchy (view full)

Properties

bank_account: IBankAccount
block_num?: number
city: string
country: Country
deleted?: boolean
details: Details
email: string
full_address: string
full_name: string
is_cooperative: boolean
phone: string
represented_by: {
    based_on: string;
    first_name: string;
    last_name: string;
    middle_name: string;
    position: string;
}

Type declaration

  • based_on: string
  • first_name: string
  • last_name: string
  • middle_name: string
  • position: string
short_name: string
type: "coop" | "ooo" | "oao" | "zao" | "pao" | "ao"
username: string