using Microsoft.AspNetCore.Http; using Newtonsoft.Json; using Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models; namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Orders; /// /// Represents the request to authorize payment for an order /// public class CreateAuthorizationRequest : Order, IAuthorizedRequest { #region Properties /// /// Gets or sets the ID of the order for which to authorize. /// [JsonIgnore] public string OrderId { get; set; } /// /// Gets the request path /// [JsonIgnore] public string Path => $"v2/checkout/orders/{Uri.EscapeDataString(OrderId)}/authorize?"; /// /// Gets the request method /// [JsonIgnore] public string Method => HttpMethods.Post; #endregion }