-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCostManifestRequest.cs
More file actions
101 lines (81 loc) · 2.4 KB
/
Copy pathCostManifestRequest.cs
File metadata and controls
101 lines (81 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
using System.Collections.Generic;
using Newtonsoft.Json;
namespace RA.Models.Input
{
public class CostManifestRequest : BaseRequest
{
public CostManifestRequest()
{
CostManifest = new CostManifest();
}
public CostManifest CostManifest { get; set; }
}
public class CostManifest
{
public CostManifest()
{
EstimatedCost = new List<CostProfile>();
}
/// <summary>
/// Required
/// </summary>
public string CTID { get; set; }
/// <summary>
/// Description
/// REQUIRED and must be a minimum of 15 characters.
/// </summary>
public string Description { get; set; }
/// <summary>
/// Alternately can provide a language map
/// </summary>
[JsonProperty( PropertyName = "ceterms:description" )]
public LanguageMap DescriptionLangMap { get; set; } = new LanguageMap();
/// <summary>
/// Organization that owns this CostManifest
/// Required
/// </summary>
public OrganizationReference CostManifestOf { get; set; } = new OrganizationReference();
/// <summary>
/// URL for cost details
/// Required
/// </summary>
public string CostDetails { get; set; }
/// <summary>
/// Cost Manifest Name
/// Recommended
/// </summary>
public string Name { get; set; }
/// <summary>
/// Alternately can provide a language map
/// </summary>
public LanguageMap NameLangMap { get; set; } = new LanguageMap();
/// <summary>
/// List of Alternate Names for this resource
/// </summary>
public List<string> AlternateName { get; set; } = new List<string>();
/// <summary>
/// LanguageMap for AlternateName
/// </summary>
public LanguageMapList AlternateNameLangMap { get; set; } = new LanguageMapList();
public string StartDate { get; set; }
public string EndDate { get; set; }
/// <summary>
/// List of cost profiles
/// </summary>
public List<CostProfile> EstimatedCost { get; set; }
#region -- Process Profiles --
/// <summary>
/// Description of a process by which a resource was created.
/// </summary>
public List<ProcessProfile> DevelopmentProcess { get; set; }
/// <summary>
/// Description of a process by which a resource is maintained, including review and updating.
/// </summary>
public List<ProcessProfile> MaintenanceProcess { get; set; }
/// <summary>
/// Description of a process by which a resource is reviewed.
/// </summary>
public List<ProcessProfile> ReviewProcess { get; set; }
#endregion
}
}