/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ContentRestrictionAsResponse } from "../definitions/ContentRestrictionAsResponse"; import { GenericLinksAsResponse } from "../definitions/GenericLinksAsResponse"; export interface ContentRestrictionByOperationAsResponse { administer?: ContentRestrictionAsResponse; copy?: ContentRestrictionAsResponse; create?: ContentRestrictionAsResponse; delete?: ContentRestrictionAsResponse; export?: ContentRestrictionAsResponse; move?: ContentRestrictionAsResponse; purge?: ContentRestrictionAsResponse; purge_version?: ContentRestrictionAsResponse; read?: ContentRestrictionAsResponse; restore?: ContentRestrictionAsResponse; update?: ContentRestrictionAsResponse; use?: ContentRestrictionAsResponse; _expandable?: { read?: string; update?: string; [x: string]: any; }; _links?: GenericLinksAsResponse; [x: string]: any; } //# sourceMappingURL=ContentRestrictionByOperationAsResponse.d.ts.map