Represents Features request parameters.

interface FeaturesParameters {
    limit?: number;
    offset?: number;
}

Properties

Properties

limit?: number

This is the requested number of records to return. Max = 50. Default = 10.

offset?: number

This is the requested starting position of the response entries, where 0 is the first record. Default = 0.