import { UserDetailsAsResponse } from "../definitions/UserDetailsAsResponse"; import { ChangeDetailsAsResponse } from "../definitions/ChangeDetailsAsResponse"; import { HistoryMetadataAsResponse } from "../definitions/HistoryMetadataAsResponse"; export interface ChangelogAsResponse { /** * The ID of the changelog. */ id?: string; /** * The user who made the change. */ author?: UserDetailsAsResponse; /** * The date on which the change took place. */ created?: string; /** * The list of items changed. */ items?: Array; /** * The history metadata associated with the changed. */ historyMetadata?: HistoryMetadataAsResponse; } //# sourceMappingURL=ChangelogAsResponse.d.ts.map