Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

GetImportRequest.cs

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;
}