identity-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital Admin
97 lines (92 loc) • 1.89 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* CloudHospital IdentityServer Admin Api INT
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface PersistedGrantApiDto
*/
export interface PersistedGrantApiDto {
/**
*
* @type {number}
* @memberof PersistedGrantApiDto
*/
'id'?: number;
/**
*
* @type {string}
* @memberof PersistedGrantApiDto
*/
'key'?: string | null;
/**
*
* @type {string}
* @memberof PersistedGrantApiDto
*/
'type'?: string | null;
/**
*
* @type {string}
* @memberof PersistedGrantApiDto
*/
'subjectId'?: string | null;
/**
*
* @type {string}
* @memberof PersistedGrantApiDto
*/
'subjectName'?: string | null;
/**
*
* @type {string}
* @memberof PersistedGrantApiDto
*/
'clientId'?: string | null;
/**
*
* @type {Date}
* @memberof PersistedGrantApiDto
*/
'creationTime'?: Date;
/**
*
* @type {Date}
* @memberof PersistedGrantApiDto
*/
'expiration'?: Date | null;
/**
*
* @type {string}
* @memberof PersistedGrantApiDto
*/
'data'?: string | null;
/**
*
* @type {Date}
* @memberof PersistedGrantApiDto
*/
'consumedTime'?: Date | null;
/**
*
* @type {string}
* @memberof PersistedGrantApiDto
*/
'sessionId'?: string | null;
/**
*
* @type {string}
* @memberof PersistedGrantApiDto
*/
'description'?: string | null;
}