using Newtonsoft.Json; namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models; /// /// Represents the integration details object /// public class Integration { #region Properties /// /// Gets or sets the type of integration between the partner and the seller. /// [JsonProperty(PropertyName = "integration_type")] public string IntegrationType { get; set; } /// /// Gets or sets the integration method that the partner uses to integrate with PayPal APIs. /// [JsonProperty(PropertyName = "integration_method")] public string IntegrationMethod { get; set; } /// /// Gets or sets the integration status. /// [JsonProperty(PropertyName = "status")] public string Status { get; set; } #endregion }