Table of Contents

Class Date

Namespace
BoldSign.Model.IdVerification
Assembly
BoldSign.Api.dll

The date details.

[DataContract]
public class Date
Inheritance
Date
Inherited Members

Constructors

Date(long?, long?, long?)

Initializes a new instance of the Date class.

public Date(long? day = null, long? month = null, long? year = null)

Parameters

day long?

Gets or sets the day.

month long?

Gets or sets the month.

year long?

Gets or sets the year.

Properties

Day

Gets or sets the day.

[DataMember(Name = "day", EmitDefaultValue = false)]
public long? Day { get; set; }

Property Value

long?

Month

Gets or sets the month.

[DataMember(Name = "month", EmitDefaultValue = false)]
public long? Month { get; set; }

Property Value

long?

Year

Gets or sets the year.

[DataMember(Name = "year", EmitDefaultValue = false)]
public long? Year { get; set; }

Property Value

long?

Methods

ToJson()

Returns the JSON string presentation of the object.

public virtual string ToJson()

Returns

string

JSON string presentation of the object.