interface IInput {
    data: {
        account_type: AccountType;
        coopname: string;
        program_key?: null | string;
        username: string;
    };
}

Properties

Properties

data: {
    account_type: AccountType;
    coopname: string;
    program_key?: null | string;
    username: string;
}

Type declaration

  • account_type: AccountType

    Тип аккаунта пайщика

  • coopname: string

    Имя кооператива

  • Optional program_key?: null | string

    Ключ выбранной программы регистрации (опционально)

  • username: string

    Имя пользователя (аккаунт)