@dritelabs/accounts-protobuf
Version:
Accounts database module
41 lines (39 loc) • 967 B
TypeScript
interface Profile {
'id'?: (string);
'userId'?: (string);
'birthdate'?: (string);
'firstName'?: (string);
'gender'?: (string);
'locale'?: (string);
'lastName'?: (string);
'middleName'?: (string);
'nickname'?: (string);
'profile'?: (string);
'picture'?: (string);
'user'?: (string);
'website'?: (string);
'zoneinfo'?: (string);
'createdAt'?: (string);
'deletedAt'?: (string);
'updatedAt'?: (string);
}
interface Profile__Output {
'id': (string);
'userId': (string);
'birthdate': (string);
'firstName': (string);
'gender': (string);
'locale': (string);
'lastName': (string);
'middleName': (string);
'nickname': (string);
'profile': (string);
'picture': (string);
'user': (string);
'website': (string);
'zoneinfo': (string);
'createdAt': (string);
'deletedAt': (string);
'updatedAt': (string);
}
export { Profile, Profile__Output };