storyblok-ts-client
Version:
Typescript library for working with Storyblok management API.
21 lines (20 loc) • 492 B
text/typescript
/**
* /**
* Interface of an ISpace's 'owner' property.
*
* @interface ISpaceOwner
*/
export interface ISpaceOwner {
readonly userid: string
readonly email: string
readonly organization: string | null
readonly username: string | null
readonly use_username: boolean
readonly alt_email: string | null
readonly firstname: string
readonly lastname: string
readonly phone: string | null
readonly id: number
readonly login_strategy: string
readonly created_at: string
}