/** * The list of authentication properties. */ export type resourceAuthenticationProperties = { 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 authentication Id the property is associated to. */ readonly authenticationDetailsId?: string; /** * The type of this payload, resourceAuthenticationProperties. */ readonly type?: string; };