import { Auth0User } from '@pieces.app/pieces-os-client'
const example: Auth0User = {
"name": Tsavo Knott,
"picture": https://picsum.photos/200,
"email": user@pieces.app,
"createdAt": null,
"emailVerified": null,
"familyName": null,
"givenName": null,
"identities": null,
"nickname": null,
"updatedAt": null,
"username": null,
"userMetadata": null,
"locale": null,
"userId": null,
"lastIp": null,
"lastLogin": null,
"loginsCount": null,
"blockedFor": null,
"guardianAuthenticators": null,
}
console.log(example)
const exampleJSON: string = JSON.stringify(example)
console.log(exampleJSON)
const exampleParsed = JSON.parse(exampleJSON) as Auth0User
console.log(exampleParsed)