UNPKG

@dntlab/swagger-dean

Version:

swagger api for DeArchNet project

25 lines (23 loc) 610 B
/** * 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 { Image } from './image'; import { Location } from './location'; import { Rate } from './rate'; export interface UserBasic { profile_id: string; full_name: string; image_url?: Image; locations: Array<any>; occupation?: string; organization?: string; website?: string; rate: Rate; }