Table of Contents

Class ObjectQueryParameters

Namespace
FoundationaLLM.Common.Models.Authentication
Assembly
FoundationaLLM.Common.dll

Parameters for querying user and group accounts.

public class ObjectQueryParameters
Inheritance
ObjectQueryParameters
Inherited Members
Extension Methods

Properties

Ids

The IDs of the account objects to query.

[JsonPropertyName("ids")]
public required string[] Ids { get; set; }

Property Value

string[]

Name

Account name.

[JsonPropertyName("name")]
public string? Name { get; set; }

Property Value

string

PageNumber

The current page number.

[JsonPropertyName("page_number")]
public int? PageNumber { get; set; }

Property Value

int?

PageSize

The number of items to return in each page.

[JsonPropertyName("page_size")]
public int? PageSize { get; set; }

Property Value

int?