Class PageDetails
- Namespace
- AssemblyAI.Transcripts
- Assembly
- AssemblyAI.dll
public record PageDetails : IEquatable<PageDetails>
- Inheritance
-
PageDetails
- Implements
- Inherited Members
Properties
CurrentUrl
The URL used to retrieve the current page of transcripts
[JsonPropertyName("current_url")]
public required string CurrentUrl { get; set; }
Property Value
Limit
The number of results this page is limited to
[JsonPropertyName("limit")]
public required int Limit { get; set; }
Property Value
NextUrl
The URL to the next page of transcripts. The next URL always points to a page with newer transcripts.
[JsonPropertyName("next_url")]
public string? NextUrl { get; set; }
Property Value
PrevUrl
The URL to the next page of transcripts. The previous URL always points to a page with older transcripts.
[JsonPropertyName("prev_url")]
public string? PrevUrl { get; set; }
Property Value
ResultCount
The actual number of results in the page
[JsonPropertyName("result_count")]
public required int ResultCount { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.