2021-04-06 04:35:56 -05:00
|
|
|
import { ActorImage } from './actor-image.model'
|
2018-01-11 02:35:50 -06:00
|
|
|
import { Actor } from './actor.model'
|
2017-12-04 03:34:40 -06:00
|
|
|
|
2018-01-11 02:35:50 -06:00
|
|
|
export interface Account extends Actor {
|
2017-12-29 12:10:13 -06:00
|
|
|
displayName: string
|
2018-02-15 07:46:26 -06:00
|
|
|
description: string
|
2018-10-05 09:56:14 -05:00
|
|
|
|
2021-05-07 10:14:39 -05:00
|
|
|
updatedAt: Date | string
|
|
|
|
|
2018-10-05 09:56:14 -05:00
|
|
|
userId?: number
|
2017-11-13 10:39:41 -06:00
|
|
|
}
|
2019-02-26 03:55:40 -06:00
|
|
|
|
|
|
|
export interface AccountSummary {
|
|
|
|
id: number
|
|
|
|
name: string
|
|
|
|
displayName: string
|
|
|
|
url: string
|
|
|
|
host: string
|
2021-04-06 04:35:56 -05:00
|
|
|
avatar?: ActorImage
|
2019-02-26 03:55:40 -06:00
|
|
|
}
|