/**
 * A deleted resource represented by ID.
 */
export interface DeletedResource {
    /** The ID of the deleted resource. */
    id: string;
}
