Show / Hide Table of Contents

Class ThirdPartyPaidListingEligibility

Tenant eligibility for using third party paid listings

Inheritance
object
ThirdPartyPaidListingEligibility
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MarketplaceService.Models
Assembly: OCI.DotNetSDK.Marketplace.dll
Syntax
public class ThirdPartyPaidListingEligibility

Properties

EligibilityReason

Declaration
[Required(ErrorMessage = "EligibilityReason is required.")]
[JsonProperty(PropertyName = "eligibilityReason")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ThirdPartyPaidListingEligibility.EligibilityReasonEnum? EligibilityReason { get; set; }
Property Value
Type Description
ThirdPartyPaidListingEligibility.EligibilityReasonEnum?

Reason the account is ineligible to launch paid listings

Remarks

Required

IsPaidListingEligible

Declaration
[Required(ErrorMessage = "IsPaidListingEligible is required.")]
[JsonProperty(PropertyName = "isPaidListingEligible")]
public bool? IsPaidListingEligible { get; set; }
Property Value
Type Description
bool?

Whether the tenant is permitted to use paid listings

Remarks

Required

IsPaidListingThrottled

Declaration
[Required(ErrorMessage = "IsPaidListingThrottled is required.")]
[JsonProperty(PropertyName = "isPaidListingThrottled")]
public bool? IsPaidListingThrottled { get; set; }
Property Value
Type Description
bool?

Whether the tenant is currently prevented from using paid listings because of throttling

Remarks

Required

In this article
Back to top