Implement existing API types

This commit is contained in:
Melody Becker 2024-11-20 15:39:24 +01:00
parent e76490f637
commit a6291fd098
14 changed files with 108 additions and 21 deletions

View file

@ -0,0 +1,10 @@
import Model, { attr } from '@ember-data/model'
export default class CustomAccountFieldModel extends Model {
@attr declare createdAt: Date
@attr declare updatedAt: Date
@attr declare key: string
@attr declare value: string
@attr declare verified?: boolean
@attr declare belongsToId: string
}