cowin-apis
Version:
This is an api client for cowin portal apis
24 lines (23 loc) • 468 B
TypeScript
export interface Root {
sessions: Session[];
}
export interface Session {
center_id: number;
name: string;
state_name: string;
district_name: string;
block_name: string;
pincode: number;
from: string;
to: string;
lat: number;
long: number;
fee_type: string;
session_id: string;
date: string;
available_capacity: number;
fee: string;
min_age_limit: number;
vaccine: string;
slots: string[];
}