/** *
Validation constraints imposed on parameters of a request (path, query string, * headers).
*/ export interface _ParameterConstraints { /** *Whether or not the parameter is required.
*/ Required?: boolean; } export declare type _UnmarshalledParameterConstraints = _ParameterConstraints;