Class OfferingDate
A range of dates during which a product is offered
Inheritance
System.Object
OfferingDate
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: EC.ProductsAndPricing.ServiceContract.Product
Assembly: EC.ProductsAndPricing.ServiceContract.dll
Syntax
public class OfferingDate
Properties
View SourceFrom
The start date of the offering
Declaration
public Date From { get; set; }
Property Type:
Date
View Source
Properties
Extra details about the offering period
Declaration
public Dictionary<string, string> Properties { get; set; }
Property Type:
System.Collections.Generic.Dictionary<System.String, System.String>
View Source
To
The end date of the offering
Declaration
public Date To { get; set; }
Property Type:
Date