Skip to content

Commit 999a409

Browse files
committed
Include missing ref, tag and replyto for queue scale image.
1 parent bd58eb5 commit 999a409

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

AiServer.ServiceModel/QueueMediaTransforms.cs

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public class QueueWatermarkImage : IQueueMediaTransform, IPost, IReturn<QueueMed
220220
[Description("Scale an image to a specified size")]
221221
[Tag("Media")]
222222
[ValidateApiKey]
223-
public class QueueScaleImage : IPost, IReturn<MediaTransformResponse>
223+
public class QueueScaleImage : IQueueMediaTransform,IPost, IReturn<MediaTransformResponse>
224224
{
225225
[ApiMember(Description = "The image file to be scaled")]
226226
[Description("The image file to be scaled")]
@@ -235,6 +235,18 @@ public class QueueScaleImage : IPost, IReturn<MediaTransformResponse>
235235
[ApiMember(Description = "Desired height of the scaled image")]
236236
[Description("Desired height of the scaled image")]
237237
public int? Height { get; set; }
238+
239+
[ApiMember(Description = "Optional client-provided identifier for the request")]
240+
[Description("Optional client-provided identifier for the request")]
241+
public string? RefId { get; set; }
242+
243+
[ApiMember(Description = "Optional queue or topic to reply to")]
244+
[Description("Optional queue or topic to reply to")]
245+
public string? ReplyTo { get; set; }
246+
247+
[ApiMember(Description = "Tag to identify the request")]
248+
[Description("Tag to identify the request")]
249+
public string? Tag { get; set; }
238250
}
239251

240252
[Description("Convert a video to a different format")]

0 commit comments

Comments
 (0)