Table of Contents

Class ApiGetAllRequest

Namespace
GroupeIsa.Neos.Designer.UIAbstractions.API.Request
Assembly
GroupeIsa.Neos.Designer.UIAbstractions.dll

Represents the API GET request that returns several items.

public class ApiGetAllRequest : ApiRequest
Inheritance
ApiGetAllRequest
Inherited Members

Properties

Filter

Gets or sets the filter.

public string? Filter { get; set; }

Property Value

string

PageNumber

Gets or sets the number of the page to retrieve.

public int? PageNumber { get; set; }

Property Value

int?

RecordsByPage

Gets or sets the maximum number of records retrieved by page.

public int? RecordsByPage { get; set; }

Property Value

int?

Skip

Gets or sets the number of records to skip.

public int? Skip { get; set; }

Property Value

int?

Sorts

Gets or sets the sorts.

public ReadOnlyArray<Sort> Sorts { get; set; }

Property Value

ReadOnlyArray<Sort>

Top

Gets or sets the maximum number of records to retrieve.

public int? Top { get; set; }

Property Value

int?

Transformations

Gets or sets the transformations.

public ReadOnlyArray<string> Transformations { get; set; }

Property Value

ReadOnlyArray<string>