Struct ProjectImagesResponse
Represents a response from the GetProjectImages function.
Inherited Members
Namespace: SI.PIXL.Client.Structs.CommandResponse
Assembly: SI.PIXL.Client.dll
Syntax
public struct ProjectImagesResponse
Constructors
ProjectImagesResponse(ApiCommandResponse, string, string, Thumbnail[])
Creates a new instance of a ProjectImagesResponse struct.
Declaration
public ProjectImagesResponse(ApiCommandResponse result, string originalImagePath, string processedImagePath, Thumbnail[] thumbnails)
Parameters
Type | Name | Description |
---|---|---|
ApiCommandResponse | result | The result. |
string | originalImagePath | The original image path. |
string | processedImagePath | The processed image path. |
Thumbnail[] | thumbnails | An array of thumbnail structs. |
Properties
OriginalImagePath
Get the original image path of the project.
Declaration
public string OriginalImagePath { get; }
Property Value
Type | Description |
---|---|
string |
ProcessedImagePath
Get the processed image path of the project.
Declaration
public string ProcessedImagePath { get; }
Property Value
Type | Description |
---|---|
string |
Result
Get the result.
Declaration
public ApiCommandResponse Result { get; }
Property Value
Type | Description |
---|---|
ApiCommandResponse |
Thumbnails
Get the array of thumbnails.
Declaration
public Thumbnail[] Thumbnails { get; }
Property Value
Type | Description |
---|---|
Thumbnail[] |