@alisdigital/types-library
Version:
TypeScript type definitions for Papilet ecosystem with session soft delete and event management features
21 lines (20 loc) • 510 B
TypeScript
import { IListResponse } from "./base.response";
export interface IInstitutionsResponse extends IListResponse {
institutions: IInstitution[];
}
export interface IInstitution {
id: string;
title: string;
description: string;
type: string;
iban: null | string;
gsmNumber: null | string;
email: null | string;
address: null | string;
city: string;
district: string;
externalUrl: null | string;
isActive: boolean;
createdAt: string;
updatedAt: string;
}