26 lines
659 B
C#
26 lines
659 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Nop.Plugin.Misc.Zettle.Domain.Api.Image;
|
|
|
|
/// <summary>
|
|
/// Represents request to get the image
|
|
/// </summary>
|
|
public class GetImageRequest : ImageApiRequest
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the image lookup key
|
|
/// </summary>
|
|
[JsonIgnore]
|
|
public string ImageLookupKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets the request path
|
|
/// </summary>
|
|
public override string Path => $"v2/images/organizations/self/product/{ImageLookupKey}";
|
|
|
|
/// <summary>
|
|
/// Gets the request method
|
|
/// </summary>
|
|
public override string Method => HttpMethods.Get;
|
|
} |