Show / Hide Table of Contents

Class Lead

Details of Lead

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

Properties

AdditionalInfo

Declaration
[JsonProperty(PropertyName = "additionalInfo")]
public AdditionalInfo AdditionalInfo { get; set; }
Property Value
Type Description
AdditionalInfo

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID for the compartment.

Remarks

Required

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

Unique OCID identifier for the lead.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Lead.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
Lead.LifecycleStateEnum?

The state for the listing.

Remarks

Required

ListingId

Declaration
[Required(ErrorMessage = "ListingId is required.")]
[JsonProperty(PropertyName = "listingId")]
public string ListingId { get; set; }
Property Value
Type Description
string

The OCID for the listing.

Remarks

Required

ListingName

Declaration
[Required(ErrorMessage = "ListingName is required.")]
[JsonProperty(PropertyName = "listingName")]
public string ListingName { get; set; }
Property Value
Type Description
string

The Name for the listing.

Remarks

Required

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the listing was created, in the format defined by RFC3339.
Example: 2023-03-27T21:10:29.600Z

In this article
Back to top