UNPKG

@devopness/sdk-js

Version:

Devopness API JS/TS SDK - Painless essential DevOps to everyone

75 lines (74 loc) 1.63 kB
/** * devopness API * Devopness API - Painless essential DevOps to everyone * * The version of the OpenAPI document: latest * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Language } from './language'; import { SocialAccountRelation } from './social-account-relation'; /** * * @export * @interface User */ export interface User { /** * The unique ID of the given user * @type {number} * @memberof User */ id: number; /** * User\'s full name * @type {string} * @memberof User */ name: string; /** * The e-mail that will uniquely identify the user on the system and become its login credential * @type {string} * @memberof User */ email: string; /** * The URL Slug of the user * @type {string} * @memberof User */ url_slug?: string; /** * * @type {Language} * @memberof User */ language: Language | null; /** * Tells if the user is active or not * @type {boolean} * @memberof User */ active: boolean; /** * * @type {Array<SocialAccountRelation>} * @memberof User */ social_accounts: Array<SocialAccountRelation>; /** * The date and time when the record was created * @type {string} * @memberof User */ created_at: string; /** * The date and time when the record was last updated * @type {string} * @memberof User */ updated_at: string; }