/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface SpacePropertyUpdateRequest { /** * Key of the space property */ key?: string; /** * Value of the space property. */ value?: any; /** * New version number and associated message */ version?: { /** * Version number of the new version. Should be 1 more than the current version number. */ number?: number; /** * Message to be associated with the new version. */ message?: string; }; } //# sourceMappingURL=SpacePropertyUpdateRequest.d.ts.map