/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface EntityPropertyAsResponse { /** * The key of the property. Required on create and update. */ key?: string; /** * The value of the property. Required on create and update. */ value?: any; } //# sourceMappingURL=EntityPropertyAsResponse.d.ts.map