import { _FieldLevelEncryptionSummary, _UnmarshalledFieldLevelEncryptionSummary } from "./_FieldLevelEncryptionSummary"; /** *

List of field-level encrpytion configurations.

*/ export interface _FieldLevelEncryptionList { /** *

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 configurations where you left off.

*/ NextMarker?: string; /** *

The maximum number of elements you want in the response body.

*/ MaxItems: number; /** *

The number of field-level encryption items.

*/ Quantity: number; /** *

An array of field-level encryption items.

*/ Items?: Array<_FieldLevelEncryptionSummary> | Iterable<_FieldLevelEncryptionSummary>; } export interface _UnmarshalledFieldLevelEncryptionList extends _FieldLevelEncryptionList { /** *

An array of field-level encryption items.

*/ Items?: Array<_UnmarshalledFieldLevelEncryptionSummary>; }