import { _Change, _UnmarshalledChange } from "./_Change"; /** *

The information for a change request.

*/ export interface _ChangeBatch { /** *

Optional: Any comments you want to include about a change batch request.

*/ Comment?: string; /** *

Information about the changes to make to the record sets.

*/ Changes: Array<_Change> | Iterable<_Change>; } export interface _UnmarshalledChangeBatch extends _ChangeBatch { /** *

Information about the changes to make to the record sets.

*/ Changes: Array<_UnmarshalledChange>; }