@dntlab/swagger-dean
Version:
swagger api for DeArchNet project
36 lines (34 loc) • 915 B
text/typescript
/**
* DeArchNet rest API
* Specification of REST API for DeArchNet Project
*
* OpenAPI spec version: 0.1.2
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/import { DateTime } from './dateTime';
import { Location } from './location';
import { Rate } from './rate';
import { SocialNetworks } from './socialNetworks';
export interface Profile {
profile_id: string;
creation_date: Date;
full_name: string;
email: string;
image_url?: string;
locations: Array<any>;
occupation?: string;
organization?: string;
categories: Array<string>;
csi_codes: Array<string>;
website?: string;
social: SocialNetworks;
conference?: string;
about: string;
followers: number;
followings: number;
connections: number;
rate: Rate;
}