/** * _JSONInput shape */ export interface _JSONInput { /** *

The type of JSON. Valid values: Document, Lines.

*/ Type?: "DOCUMENT" | "LINES" | string; } export declare type _UnmarshalledJSONInput = _JSONInput;