QueryCollectionFormat enum

The format that will be used to join an array of values together for a query parameter value.

Fields

Csv

CSV: Each pair of segments joined by a single comma.

Multi

Denotes this is an array of values that should be passed to the server in multiple key/value pairs, e.g. ?queryParam=value1&queryParam=value2

Pipes

Pipes: Each pair of segments joined by a single pipe character.

Ssv

SSV: Each pair of segments joined by a single space character.

Tsv

TSV: Each pair of segments joined by a single tab character.