Class PostAvaProjectValidationSourceOptions
Options for validating an AVA project
Inheritance
System.Object
PostAvaProjectValidationSourceOptions
Implements
System.ComponentModel.INotifyPropertyChanged
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()
Assembly: Dangl.AVACloud.Client.dll
Syntax
public class PostAvaProjectValidationSourceOptions : INotifyPropertyChanged
Properties
|
Improve this Doc
View Source
AvaProject
The project that should be validated
Declaration
[JsonProperty("avaProject", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
[Required]
public ProjectDto AvaProject { get; set; }
Property Value
Type |
Description |
Dangl.AVA.IO.Dto.v1.ProjectDto |
|
|
Improve this Doc
View Source
AvaSourceOptions
Options for importing the AVA project
Declaration
[JsonProperty("avaSourceOptions", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public PostAvaSourceOptions AvaSourceOptions { get; set; }
Property Value
|
Improve this Doc
View Source
ExchangePhase
This can optionally be supplied to test for a specific exchange phase. For example,
missing prices will only trigger errors in some specific exchange phases.
Please note: If a conversion to a specific format, e.g. GAEB or ÖNorm, is given,
this parameter is not applied to the internal conversion. The converter options
must be set in the appropriate properties as well.
Declaration
[JsonProperty("exchangePhase", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[JsonConverter(typeof(StringEnumConverter))]
public ExchangePhaseDto? ExchangePhase { get; set; }
Property Value
Type |
Description |
System.Nullable<Dangl.AVA.IO.Dto.v1.Contents.ServiceSpecificationContents.ExchangePhaseDto> |
|
|
Improve this Doc
View Source
GaebDestinationOptions
Options for conversion to GAEB. Should be given if ValidationType is set to GAEB.
Declaration
[JsonProperty("gaebDestinationOptions", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public PostGaebDestinationOptions GaebDestinationOptions { get; set; }
Property Value
|
Improve this Doc
View Source
OenormDestinationOptions
Options for conversion to Oenorm. Should be given if ValidationType is set to Oenorm.
Declaration
[JsonProperty("oenormDestinationOptions", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public PostOenormDestinationOptions OenormDestinationOptions { get; set; }
Property Value
|
Improve this Doc
View Source
ServiceSpecificationIndex
The index of the ServiceSpecification that should be validated. If not given, will default
to the first one in the project.
Declaration
[JsonProperty("serviceSpecificationIndex", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public int? ServiceSpecificationIndex { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Int32> |
|
|
Improve this Doc
View Source
ValidationType
This can optionally be specified to simulate a conversion to a specific target.
Declaration
[JsonProperty("validationType", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(StringEnumConverter))]
public ValidationType ValidationType { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
FromJson(String)
Declaration
public static PostAvaProjectValidationSourceOptions FromJson(string data)
Parameters
Type |
Name |
Description |
System.String |
data |
|
Returns
|
Improve this Doc
View Source
RaisePropertyChanged(String)
Declaration
protected virtual void RaisePropertyChanged(string propertyName = null)
Parameters
Type |
Name |
Description |
System.String |
propertyName |
|
|
Improve this Doc
View Source
ToJson()
Declaration
Returns
Type |
Description |
System.String |
|
Events
|
Improve this Doc
View Source
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type |
Description |
System.ComponentModel.PropertyChangedEventHandler |
|
Implements
System.ComponentModel.INotifyPropertyChanged