import { _FieldLevelEncryptionProfileSummary, _UnmarshalledFieldLevelEncryptionProfileSummary } from "./_FieldLevelEncryptionProfileSummary"; /** *
List of field-level encryption profiles.
*/ export interface _FieldLevelEncryptionProfileList { /** *If there are more elements to be listed, this element is present and contains the value that you can use for the Marker request parameter to continue listing your profiles where you left off.
The maximum number of field-level encryption profiles you want in the response body.
*/ MaxItems: number; /** *The number of field-level encryption profiles.
*/ Quantity: number; /** *The field-level encryption profile items.
*/ Items?: Array<_FieldLevelEncryptionProfileSummary> | Iterable<_FieldLevelEncryptionProfileSummary>; } export interface _UnmarshalledFieldLevelEncryptionProfileList extends _FieldLevelEncryptionProfileList { /** *The field-level encryption profile items.
*/ Items?: Array<_UnmarshalledFieldLevelEncryptionProfileSummary>; }