mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
25 lines
471 B
TypeScript
25 lines
471 B
TypeScript
/*
|
|
import { Decimal } from 'decimal.js-light'
|
|
|
|
export class GmsUserProfile {
|
|
firstName: string | undefined
|
|
lastName: string | undefined
|
|
alias: string
|
|
type: number
|
|
name: string | undefined
|
|
location: {
|
|
type: string
|
|
coordinates: [Decimal, Decimal]
|
|
}
|
|
|
|
accuracy: unknown
|
|
address: string | undefined
|
|
city: string | undefined
|
|
state: string
|
|
country: string | undefined
|
|
zipCode: string | undefined
|
|
language: string
|
|
profileImage: unknown
|
|
}
|
|
*/
|