@@ -29,13 +29,13 @@ exports[`Jest Snapshot testing suite Matches DOM Snapshot 1`] = `
2929class LightMeasured {
3030 private _id ?: number ;
3131 private _lumens ?: number ;
32- private _sentAt ?: string ;
32+ private _sentAt ?: Date ;
3333 private _additionalProperties ?: Map & lt ;string , any & gt ;;
3434
3535 constructor (input : {
3636 id?: number ,
3737 lumens?: number ,
38- sentAt?: string ,
38+ sentAt?: Date ,
3939 additionalProperties?: Map<string , any>,
4040 }) {
4141 this._id = input.id;
@@ -50,8 +50,8 @@ class LightMeasured {
5050 get lumens (): number | undefined { return this._lumens; }
5151 set lumens (lumens : number | undefined ) { this._lumens = lumens; }
5252
53- get sentAt (): string | undefined { return this._sentAt; }
54- set sentAt (sentAt : string | undefined ) { this._sentAt = sentAt; }
53+ get sentAt (): Date | undefined { return this._sentAt; }
54+ set sentAt (sentAt : Date | undefined ) { this._sentAt = sentAt; }
5555
5656 get additionalProperties (): Map & lt ;string , any & gt ; | undefined { return this._additionalProperties; }
5757 set additionalProperties (additionalProperties : Map & lt ;string , any & gt ; | undefined ) { this._additionalProperties = additionalProperties; }
@@ -77,12 +77,12 @@ export { LightMeasured };
7777
7878class TurnOn {
7979 private _id ?: number ;
80- private _sentAt ?: string ;
80+ private _sentAt ?: Date ;
8181 private _additionalProperties ?: Map & lt ;string , any & gt ;;
8282
8383 constructor (input : {
8484 id?: number ,
85- sentAt?: string ,
85+ sentAt?: Date ,
8686 additionalProperties?: Map<string , any>,
8787 }) {
8888 this._id = input.id;
@@ -93,8 +93,8 @@ class TurnOn {
9393 get id (): number | undefined { return this._id; }
9494 set id (id : number | undefined ) { this._id = id; }
9595
96- get sentAt (): string | undefined { return this._sentAt; }
97- set sentAt (sentAt : string | undefined ) { this._sentAt = sentAt; }
96+ get sentAt (): Date | undefined { return this._sentAt; }
97+ set sentAt (sentAt : Date | undefined ) { this._sentAt = sentAt; }
9898
9999 get additionalProperties (): Map & lt ;string , any & gt ; | undefined { return this._additionalProperties; }
100100 set additionalProperties (additionalProperties : Map & lt ;string , any & gt ; | undefined ) { this._additionalProperties = additionalProperties; }
0 commit comments