identity-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital Admin
67 lines (62 loc) • 1.37 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 SendVerificationEmailDto
*/
export interface SendVerificationEmailDto {
/**
*
* @type {string}
* @memberof SendVerificationEmailDto
*/
'clientName': string;
/**
*
* @type {string}
* @memberof SendVerificationEmailDto
*/
'primaryColor'?: string | null;
/**
*
* @type {string}
* @memberof SendVerificationEmailDto
*/
'email': string;
/**
*
* @type {string}
* @memberof SendVerificationEmailDto
*/
'patientName'?: string | null;
/**
*
* @type {string}
* @memberof SendVerificationEmailDto
*/
'clientLogo'?: string | null;
/**
*
* @type {string}
* @memberof SendVerificationEmailDto
*/
'clientUri'?: string | null;
/**
*
* @type {string}
* @memberof SendVerificationEmailDto
*/
'supportEmail'?: string | null;
}