using Microsoft.AspNetCore.Http; using Newtonsoft.Json; namespace Nop.Plugin.Misc.Zettle.Domain.Api.Product; /// /// Represents request to get the import /// public class GetImportRequest : ProductApiRequest { /// /// Gets or sets the import unique identifier as UUID version 1 /// [JsonIgnore] public string ImportUuid { get; set; } /// /// Gets the request path /// public override string Path => $"organizations/self/import/status/{ImportUuid}"; /// /// Gets the request method /// public override string Method => HttpMethods.Get; }