/** * The list of connection properties. */ export type resourceConnectionProperties = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; /** * Primary key set by the server. */ readonly id?: string; /** * The property name. */ name?: string; /** * The property value. */ value?: string; /** * The connection Id the property is associated to. */ readonly connectionDetailsId?: string; /** * The type of this payload, resourceConnectionProperties. */ readonly type?: string; };