Skip to content

Commit e766c6a

Browse files
committed
chore(datetime): Apply manual changes
1 parent 604004d commit e766c6a

File tree

35 files changed

+67
-67
lines changed

35 files changed

+67
-67
lines changed

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/Counterexample.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ public class Counterexample : BaseModel
3434
/// The timestamp for creation of the counterexample.
3535
/// </summary>
3636
[JsonProperty("created", NullValueHandling = NullValueHandling.Ignore)]
37-
public virtual DateTime Created { get; private set; }
37+
public virtual DateTime? Created { get; private set; }
3838
/// <summary>
3939
/// The timestamp for the last update to the counterexample.
4040
/// </summary>
4141
[JsonProperty("updated", NullValueHandling = NullValueHandling.Ignore)]
42-
public virtual DateTime Updated { get; private set; }
42+
public virtual DateTime? Updated { get; private set; }
4343
}
4444

4545
}

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/DialogNode.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,12 +303,12 @@ public enum DigressOutSlotsEnum
303303
/// The timestamp for creation of the dialog node.
304304
/// </summary>
305305
[JsonProperty("created", NullValueHandling = NullValueHandling.Ignore)]
306-
public virtual DateTime Created { get; private set; }
306+
public virtual DateTime? Created { get; private set; }
307307
/// <summary>
308308
/// The timestamp for the most recent update to the dialog node.
309309
/// </summary>
310310
[JsonProperty("updated", NullValueHandling = NullValueHandling.Ignore)]
311-
public virtual DateTime Updated { get; private set; }
311+
public virtual DateTime? Updated { get; private set; }
312312
/// <summary>
313313
/// The actions for the dialog node.
314314
/// </summary>

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/Entity.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ public class Entity : BaseModel
3434
/// The timestamp for creation of the entity.
3535
/// </summary>
3636
[JsonProperty("created", NullValueHandling = NullValueHandling.Ignore)]
37-
public virtual DateTime Created { get; private set; }
37+
public virtual DateTime? Created { get; private set; }
3838
/// <summary>
3939
/// The timestamp for the last update to the entity.
4040
/// </summary>
4141
[JsonProperty("updated", NullValueHandling = NullValueHandling.Ignore)]
42-
public virtual DateTime Updated { get; private set; }
42+
public virtual DateTime? Updated { get; private set; }
4343
/// <summary>
4444
/// The description of the entity.
4545
/// </summary>

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/EntityExport.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ public class EntityExport : BaseModel
3535
/// The timestamp for creation of the entity.
3636
/// </summary>
3737
[JsonProperty("created", NullValueHandling = NullValueHandling.Ignore)]
38-
public virtual DateTime Created { get; private set; }
38+
public virtual DateTime? Created { get; private set; }
3939
/// <summary>
4040
/// The timestamp for the last update to the entity.
4141
/// </summary>
4242
[JsonProperty("updated", NullValueHandling = NullValueHandling.Ignore)]
43-
public virtual DateTime Updated { get; private set; }
43+
public virtual DateTime? Updated { get; private set; }
4444
/// <summary>
4545
/// The description of the entity.
4646
/// </summary>

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/Example.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ public class Example : BaseModel
3535
/// The timestamp for creation of the example.
3636
/// </summary>
3737
[JsonProperty("created", NullValueHandling = NullValueHandling.Ignore)]
38-
public virtual DateTime Created { get; private set; }
38+
public virtual DateTime? Created { get; private set; }
3939
/// <summary>
4040
/// The timestamp for the last update to the example.
4141
/// </summary>
4242
[JsonProperty("updated", NullValueHandling = NullValueHandling.Ignore)]
43-
public virtual DateTime Updated { get; private set; }
43+
public virtual DateTime? Updated { get; private set; }
4444
/// <summary>
4545
/// An array of contextual entity mentions.
4646
/// </summary>

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/Intent.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ public class Intent : BaseModel
3434
/// The timestamp for creation of the intent.
3535
/// </summary>
3636
[JsonProperty("created", NullValueHandling = NullValueHandling.Ignore)]
37-
public virtual DateTime Created { get; private set; }
37+
public virtual DateTime? Created { get; private set; }
3838
/// <summary>
3939
/// The timestamp for the last update to the intent.
4040
/// </summary>
4141
[JsonProperty("updated", NullValueHandling = NullValueHandling.Ignore)]
42-
public virtual DateTime Updated { get; private set; }
42+
public virtual DateTime? Updated { get; private set; }
4343
/// <summary>
4444
/// The description of the intent.
4545
/// </summary>

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/IntentExport.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ public class IntentExport : BaseModel
3535
/// The timestamp for creation of the intent.
3636
/// </summary>
3737
[JsonProperty("created", NullValueHandling = NullValueHandling.Ignore)]
38-
public virtual DateTime Created { get; private set; }
38+
public virtual DateTime? Created { get; private set; }
3939
/// <summary>
4040
/// The timestamp for the last update to the intent.
4141
/// </summary>
4242
[JsonProperty("updated", NullValueHandling = NullValueHandling.Ignore)]
43-
public virtual DateTime Updated { get; private set; }
43+
public virtual DateTime? Updated { get; private set; }
4444
/// <summary>
4545
/// The description of the intent.
4646
/// </summary>

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/Synonym.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ public class Synonym : BaseModel
3434
/// The timestamp for creation of the synonym.
3535
/// </summary>
3636
[JsonProperty("created", NullValueHandling = NullValueHandling.Ignore)]
37-
public virtual DateTime Created { get; private set; }
37+
public virtual DateTime? Created { get; private set; }
3838
/// <summary>
3939
/// The timestamp for the most recent update to the synonym.
4040
/// </summary>
4141
[JsonProperty("updated", NullValueHandling = NullValueHandling.Ignore)]
42-
public virtual DateTime Updated { get; private set; }
42+
public virtual DateTime? Updated { get; private set; }
4343
}
4444

4545
}

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/Value.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ public enum ValueTypeEnum
7070
/// The timestamp for creation of the entity value.
7171
/// </summary>
7272
[JsonProperty("created", NullValueHandling = NullValueHandling.Ignore)]
73-
public virtual DateTime Created { get; private set; }
73+
public virtual DateTime? Created { get; private set; }
7474
/// <summary>
7575
/// The timestamp for the last update to the entity value.
7676
/// </summary>
7777
[JsonProperty("updated", NullValueHandling = NullValueHandling.Ignore)]
78-
public virtual DateTime Updated { get; private set; }
78+
public virtual DateTime? Updated { get; private set; }
7979
/// <summary>
8080
/// An array containing any synonyms for the entity value.
8181
/// </summary>

src/IBM.WatsonDeveloperCloud.Assistant.v1/Model/ValueExport.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ public enum ValueTypeEnum
7070
/// The timestamp for creation of the entity value.
7171
/// </summary>
7272
[JsonProperty("created", NullValueHandling = NullValueHandling.Ignore)]
73-
public virtual DateTime Created { get; private set; }
73+
public virtual DateTime? Created { get; private set; }
7474
/// <summary>
7575
/// The timestamp for the last update to the entity value.
7676
/// </summary>
7777
[JsonProperty("updated", NullValueHandling = NullValueHandling.Ignore)]
78-
public virtual DateTime Updated { get; private set; }
78+
public virtual DateTime? Updated { get; private set; }
7979
/// <summary>
8080
/// An array containing any synonyms for the entity value.
8181
/// </summary>

0 commit comments

Comments
 (0)