Webiant Logo Webiant Logo
  1. No results found.

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

BatchRequest.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Misc.Omnisend.DTO;

public class BatchRequest
{
    [JsonProperty("method")] public string Method { get; } = "POST";
    [JsonProperty("endpoint")] public string Endpoint { get; set; }
    [JsonProperty("items")] public List Items { get; set; } = new();
}