/** * MailSlurp API * MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository * * The version of the OpenAPI document: 6.5.2 * Contact: contact@mailslurp.dev * * 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 UserInfoDto */ export interface UserInfoDto { /** * * @type {string} * @memberof UserInfoDto */ id: string; /** * * @type {string} * @memberof UserInfoDto */ emailAddress: string; /** * * @type {string} * @memberof UserInfoDto */ accountState: UserInfoDtoAccountStateEnum; /** * * @type {string} * @memberof UserInfoDto */ subscriptionType?: UserInfoDtoSubscriptionTypeEnum; /** * * @type {string} * @memberof UserInfoDto */ accountType: UserInfoDtoAccountTypeEnum; /** * * @type {Date} * @memberof UserInfoDto */ createdAt: Date; } /** * @export * @enum {string} */ export declare enum UserInfoDtoAccountStateEnum { FROZEN = "FROZEN", ACTIVE = "ACTIVE" } /** * @export * @enum {string} */ export declare enum UserInfoDtoSubscriptionTypeEnum { PRO_MONTHLY = "PRO_MONTHLY", STARTER = "STARTER", PRO = "PRO", TEAM = "TEAM", ENTERPRISE = "ENTERPRISE" } /** * @export * @enum {string} */ export declare enum UserInfoDtoAccountTypeEnum { SOLO = "SOLO", CHILD_SOLO = "CHILD_SOLO", CHILD_TEAM = "CHILD_TEAM", CHILD_ADMIN = "CHILD_ADMIN" } export declare function UserInfoDtoFromJSON(json: any): UserInfoDto; export declare function UserInfoDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserInfoDto; export declare function UserInfoDtoToJSON(value?: UserInfoDto | null): any;