baasic-sdk-javascript
Version:
JavaScript SDK provides core functionality for building web and mobile applications on [Baasic](http://www.baasic.com/).
23 lines (22 loc) • 685 B
TypeScript
import { IModel } from '../../../common/contracts';
import { IMembership, IProfileAvatar, IUserEducation, IUserProfileSkill, IUserProfileWork } from './';
export interface IUserProfile extends IModel {
aboutMySelf?: string;
address?: string;
avatar?: IProfileAvatar;
city?: string;
country?: string;
displayName?: string;
dob?: string;
educations?: IUserEducation[];
firstName?: string;
lastName?: string;
membership?: IMembership;
mobilePhone?: string;
skills?: IUserProfileSkill[];
timestamp?: string;
timeZoneId?: string;
webSites?: string;
work?: IUserProfileWork[];
zipCode?: string;
}