Geoffrey Brossard

Results 3 comments of Geoffrey Brossard

Exactly the issue I was looking for :smile: ! I would add that the statement "(1) is more relevant than (2)" is also criticizable. In my use case it's a...

Hi @loiclec! Maybe one way would be to split it into two different ranking rules: `attribute` that sort not taking terms order into account, and `position` that order according to...

To fix this: In [_lib/Model/GetSegments.php:60_](https://github.com/getbrevo/brevo-php/blob/f4741eece5eacb96192417b06080abf43f47c44e/lib/Model/GetSegments.php#L60): ```php protected static $swaggerTypes = [ 'segments' => '\Brevo\Client\Model\GetSegmentsSegments', 'count' => 'int' ]; ``` replace `\Brevo\Client\Model\GetSegmentsSegments` by `object[]` ```php protected static $swaggerTypes = [ 'segments'...