Class AI21FileQuery
Inheritance
AI21FileQuery
Assembly: Glitch9.AIDevKit.Provider.AI21.dll
Syntax
public sealed class AI21FileQuery : IRequestParameterProvider
Properties
|
Edit this page
View Source
Labels
Optional. Return only files with this label.
Label matching is case-sensitive, and will not match substrings.
Declaration
public string[] Labels { get; set; }
Property Value
|
Edit this page
View Source
Limit
Optional. The number of files to retrieve (maximum 1,000, default 1,000)
Declaration
public int? Limit { get; set; }
Property Value
|
Edit this page
View Source
Name
Optional. The full name of the uploaded file, without any path parameters.
So: ??똹doc.txt?? not ??users/benfranklyn/Documents/mydoc.txt??
Does not match name substrings, so ??굊c.txt??does not match ??똹doc.txt??
Declaration
public string Name { get; set; }
Property Value
|
Edit this page
View Source
Offset
Optional. The number of files to skip.
Declaration
public int? Offset { get; set; }
Property Value
|
Edit this page
View Source
Status
Optional. Status of the file in the library.
Supported values: DB_RECORD_CREATED, UPLOADED, UPLOAD_FAILED, PROCESSED, PROCESSING_FAILED
Declaration
public FileQueryStatus? Status { get; set; }
Property Value
Methods
|
Edit this page
View Source
GetRequestParameters()
Declaration
public IEnumerable<RequestParameter> GetRequestParameters()
Returns
Implements
Extension Methods