/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface ContentPropertyCreateRequest { /** * Key of the content property */ key: string; /** * Value of the content property. */ value: any; } //# sourceMappingURL=ContentPropertyCreateRequest.d.ts.map