interface Database {
    attributes: {
        id: number;
        name: string;
        password: string;
        relationships: DatabaseRelationship[];
        remote: string;
        username: string;
    };
    object: "database";
}

Properties

Properties

attributes: {
    id: number;
    name: string;
    password: string;
    relationships: DatabaseRelationship[];
    remote: string;
    username: string;
}

Type declaration

  • id: number
  • name: string
  • password: string
  • relationships: DatabaseRelationship[]
  • remote: string
  • username: string
object: "database"

Generated using TypeDoc