/** * A single model counter with last-update timestamp. */ export interface SdPlatformUserModelStat { /** * Counter value. */ readonly count: number; /** * Epoch timestamp of last increment. */ readonly updated_at: number; } /** * Model status counters for a user. */ export interface SdPlatformUserModelStats { readonly uploaded: SdPlatformUserModelStat; readonly confirmed: SdPlatformUserModelStat; readonly denied: SdPlatformUserModelStat; readonly published: SdPlatformUserModelStat; readonly pending: SdPlatformUserModelStat; readonly deleted: SdPlatformUserModelStat; } //# sourceMappingURL=SdPlatformUserModelStats.d.ts.map