Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,52 +57,5 @@ public partial interface IImageClassificationClient
string? imageUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);

/// <summary>
/// Classify the Car Image<br/>
/// The car image *Classifier* service categorizes all provided images. The supported categories are exterior, interior, engine, undercarriage, other.<br/>
/// It is mandatory that the provided input image is a car image. If the image is not a car image, the service will not generate an error, and the result may not be relevant.
/// </summary>
/// <param name="image">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imagename">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imageUrl">
/// Source image URL. (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Picsart.ApiException"></exception>
global::System.Threading.Tasks.Task<global::Picsart.ImageCarsClassifierResponse> ImageCarsClassifierAsync(
global::System.IO.Stream? image = default,
string? imagename = default,
string? imageUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Classify the Car Image<br/>
/// The car image *Classifier* service categorizes all provided images. The supported categories are exterior, interior, engine, undercarriage, other.<br/>
/// It is mandatory that the provided input image is a car image. If the image is not a car image, the service will not generate an error, and the result may not be relevant.
/// </summary>
/// <param name="image">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imagename">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imageUrl">
/// Source image URL. (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Picsart.ApiException"></exception>
global::System.Threading.Tasks.Task<global::Picsart.AutoSDKHttpResponse<global::Picsart.ImageCarsClassifierResponse>> ImageCarsClassifierAsResponseAsync(
global::System.IO.Stream? image = default,
string? imagename = default,
string? imageUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,50 +54,5 @@ public partial interface IImageClassificationClient
string? imageUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);

/// <summary>
/// Describe Image<br/>
/// The image *Describer* service helps generate a detailed text description for the provided image (image2text).
/// </summary>
/// <param name="image">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imagename">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imageUrl">
/// Source image URL. (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Picsart.ApiException"></exception>
global::System.Threading.Tasks.Task<global::Picsart.ImageDescriberResponse> ImageDescriberAsync(
global::System.IO.Stream? image = default,
string? imagename = default,
string? imageUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Describe Image<br/>
/// The image *Describer* service helps generate a detailed text description for the provided image (image2text).
/// </summary>
/// <param name="image">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imagename">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imageUrl">
/// Source image URL. (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Picsart.ApiException"></exception>
global::System.Threading.Tasks.Task<global::Picsart.AutoSDKHttpResponse<global::Picsart.ImageDescriberResponse>> ImageDescriberAsResponseAsync(
global::System.IO.Stream? image = default,
string? imagename = default,
string? imageUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,52 +57,5 @@ public partial interface IImageClassificationClient
string? imageUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);

/// <summary>
/// Extract Image Colors<br/>
/// Extract the key colors from an image to understand its visual style and palette.<br/>
/// The service analyzes an image and returns up to five prominent colors, including dominant foreground and background tones.
/// </summary>
/// <param name="image">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imagename">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imageUrl">
/// Source image URL. (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Picsart.ApiException"></exception>
global::System.Threading.Tasks.Task<global::Picsart.ImageExtractColorsResponse> ImageExtractColorsAsync(
global::System.IO.Stream? image = default,
string? imagename = default,
string? imageUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Extract Image Colors<br/>
/// Extract the key colors from an image to understand its visual style and palette.<br/>
/// The service analyzes an image and returns up to five prominent colors, including dominant foreground and background tones.
/// </summary>
/// <param name="image">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imagename">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imageUrl">
/// Source image URL. (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Picsart.ApiException"></exception>
global::System.Threading.Tasks.Task<global::Picsart.AutoSDKHttpResponse<global::Picsart.ImageExtractColorsResponse>> ImageExtractColorsAsResponseAsync(
global::System.IO.Stream? image = default,
string? imagename = default,
string? imageUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,50 +54,5 @@ public partial interface IImageClassificationClient
string? imageUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);

/// <summary>
/// Image Tagging<br/>
/// This tagging service analyzes the image and suggests hashtags that are relevant to the content.
/// </summary>
/// <param name="image">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imagename">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imageUrl">
/// Source image URL. (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Picsart.ApiException"></exception>
global::System.Threading.Tasks.Task<global::Picsart.ImageTaggingResponse> ImageTaggingAsync(
global::System.IO.Stream? image = default,
string? imagename = default,
string? imageUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Image Tagging<br/>
/// This tagging service analyzes the image and suggests hashtags that are relevant to the content.
/// </summary>
/// <param name="image">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imagename">
/// Source image file (binary). (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="imageUrl">
/// Source image URL. (If this parameter is present, the other image source parameters must be empty.)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Picsart.ApiException"></exception>
global::System.Threading.Tasks.Task<global::Picsart.AutoSDKHttpResponse<global::Picsart.ImageTaggingResponse>> ImageTaggingAsResponseAsync(
global::System.IO.Stream? image = default,
string? imagename = default,
string? imageUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -67,60 +67,5 @@ public partial interface IImageConversionClient
string? fileUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);

/// <summary>
/// Design Import (beta)<br/>
/// With the *Design Import* tool you can instantly turn your design files (AI, SVG) into a Replay file (Picsart's proprietary project file format) that can be consumed by the [Photo and Video Editor SDK](https://docs.picsart.io/docs/photo-video-editor-overview).<br/>
/// <br/>
/// Use this to import your existing designs and make them resuable in Picsart.<br/>
/// **Suported Formats:** Examples of where the vectorizer can be used include:<br/>
/// * AI (Adobe Illustrator)<br/>
/// * SVG (Scalable Vector Graphics)
/// </summary>
/// <param name="file">
/// Source file (binary). (If this parameter is present, the other source parameters must be empty.)
/// </param>
/// <param name="filename">
/// Source file (binary). (If this parameter is present, the other source parameters must be empty.)
/// </param>
/// <param name="fileUrl">
/// Source file URL. (If this parameter is present, the other source parameters must be empty.)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Picsart.ApiException"></exception>
global::System.Threading.Tasks.Task<global::Picsart.ImageDesignImportResponse> ImageDesignImportAsync(
global::System.IO.Stream? file = default,
string? filename = default,
string? fileUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Design Import (beta)<br/>
/// With the *Design Import* tool you can instantly turn your design files (AI, SVG) into a Replay file (Picsart's proprietary project file format) that can be consumed by the [Photo and Video Editor SDK](https://docs.picsart.io/docs/photo-video-editor-overview).<br/>
/// <br/>
/// Use this to import your existing designs and make them resuable in Picsart.<br/>
/// **Suported Formats:** Examples of where the vectorizer can be used include:<br/>
/// * AI (Adobe Illustrator)<br/>
/// * SVG (Scalable Vector Graphics)
/// </summary>
/// <param name="file">
/// Source file (binary). (If this parameter is present, the other source parameters must be empty.)
/// </param>
/// <param name="filename">
/// Source file (binary). (If this parameter is present, the other source parameters must be empty.)
/// </param>
/// <param name="fileUrl">
/// Source file URL. (If this parameter is present, the other source parameters must be empty.)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
/// <exception cref="global::Picsart.ApiException"></exception>
global::System.Threading.Tasks.Task<global::Picsart.AutoSDKHttpResponse<global::Picsart.ImageDesignImportResponse>> ImageDesignImportAsResponseAsync(
global::System.IO.Stream? file = default,
string? filename = default,
string? fileUrl = default,
global::Picsart.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
}
Loading