13 lines
239 B
TypeScript
13 lines
239 B
TypeScript
export interface Client {
|
|
id: number;
|
|
clientId: string;
|
|
clientKey: string;
|
|
clientSecret: string;
|
|
grantTypeList: string[];
|
|
grantType: string;
|
|
deviceType: string;
|
|
activeTimeout: number;
|
|
timeout: number;
|
|
status: string;
|
|
}
|