interface SchemaModel {
    attributes?: ModelAttribute[];
    fields: Fields;
    name: string;
    pluralName: string;
    primaryKeyInfo: PrimaryKeyInfo;
    syncable?: boolean;
}

Properties

attributes?: ModelAttribute[]
fields: Fields
name: string
pluralName: string
primaryKeyInfo: PrimaryKeyInfo
syncable?: boolean