···61616262export interface IRParameterObject {
6363 /**
6464+ * Determines whether the parameter value SHOULD allow reserved characters, as defined by RFC3986 `:/?#[]@!$&'()*+,;=` to be included without percent-encoding. The default value is `false`. This property SHALL be ignored if the request body media type is not `application/x-www-form-urlencoded` or `multipart/form-data`. If a value is explicitly defined, then the value of `contentType` (implicit or explicit) SHALL be ignored.
6565+ */
6666+ allowReserved?: boolean;
6767+ /**
6868+ * When this is true, property values of type `array` or `object` generate separate parameters for each value of the array, or key-value-pair of the map. For other types of properties this property has no effect. When `style` is `form`, the default value is `true`. For all other styles, the default value is `false`. This property SHALL be ignored if the request body media type is not `application/x-www-form-urlencoded` or `multipart/form-data`. If a value is explicitly defined, then the value of `contentType` (implicit or explicit) SHALL be ignored.
6969+ */
7070+ explode: boolean;
7171+ /**
6472 * Endpoint parameters must specify their location.
6573 */
6674 location: 'cookie' | 'header' | 'path' | 'query';
···7280 pagination?: boolean | string;
7381 required?: boolean;
7482 schema: IRSchemaObject;
8383+ /**
8484+ * Describes how the parameter value will be serialized depending on the type of the parameter value. Default values (based on value of `in`): for `query` - `form`; for `path` - `simple`; for `header` - `simple`; for `cookie` - `form`.
8585+ */
8686+ style:
8787+ | 'deepObject'
8888+ | 'form'
8989+ | 'label'
9090+ | 'matrix'
9191+ | 'pipeDelimited'
9292+ | 'simple'
9393+ | 'spaceDelimited';
7594}
76957796export interface IRResponsesObject {