Show / Hide Table of Contents

Class AdditionalInfo

Additional information about the lead

Inheritance
object
AdditionalInfo
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 AdditionalInfo

Properties

Company

Declaration
[JsonProperty(PropertyName = "company")]
public string Company { get; set; }
Property Value
Type Description
string

The company name

CompanyAddress

Declaration
[JsonProperty(PropertyName = "companyAddress")]
public string CompanyAddress { get; set; }
Property Value
Type Description
string

The company address

Email

Declaration
[JsonProperty(PropertyName = "email")]
public string Email { get; set; }
Property Value
Type Description
string

The email address

FirstName

Declaration
[JsonProperty(PropertyName = "firstName")]
public string FirstName { get; set; }
Property Value
Type Description
string

The first name

LastName

Declaration
[JsonProperty(PropertyName = "lastName")]
public string LastName { get; set; }
Property Value
Type Description
string

The last name

Notes

Declaration
[JsonProperty(PropertyName = "notes")]
public string Notes { get; set; }
Property Value
Type Description
string

Additional notes

Phone

Declaration
[JsonProperty(PropertyName = "phone")]
public string Phone { get; set; }
Property Value
Type Description
string

The phone number

In this article
Back to top