File tree 2 files changed +12
-12
lines changed 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export interface ICreateWidgetResponse {
88
88
/** Request for GetWidget. */
89
89
export interface IGetWidgetRequest {
90
90
/** The widget ID. */
91
- id ? : number ;
91
+ id : number ;
92
92
93
93
/** Don't get the widget if it has this ETag. */
94
94
ifNotETag ?: string ;
@@ -127,7 +127,7 @@ export interface IDeleteWidgetResponse {
127
127
/** Request for GetWidgetBatch. */
128
128
export interface IGetWidgetBatchRequest {
129
129
/** The IDs of the widgets to return. */
130
- ids ? : number [ ] ;
130
+ ids : number [ ] ;
131
131
}
132
132
133
133
/** Response for GetWidgetBatch. */
@@ -258,9 +258,9 @@ export interface IMixedResponse {
258
258
259
259
/** Request for Required. */
260
260
export interface IRequiredRequest {
261
- query ? : string ;
261
+ query : string ;
262
262
263
- normal ? : string ;
263
+ normal : string ;
264
264
265
265
widget ?: IWidget ;
266
266
@@ -281,7 +281,7 @@ export interface IRequiredRequest {
281
281
282
282
/** Response for Required. */
283
283
export interface IRequiredResponse {
284
- normal ? : string ;
284
+ normal : string ;
285
285
}
286
286
287
287
/** Request for MirrorBytes. */
@@ -328,7 +328,7 @@ export interface IWidget {
328
328
id ?: number ;
329
329
330
330
/** The name of the widget. */
331
- name ? : string ;
331
+ name : string ;
332
332
}
333
333
334
334
export interface IAny {
Original file line number Diff line number Diff line change @@ -905,7 +905,7 @@ export interface ICreateWidgetResponse {
905
905
/** Request for GetWidget. */
906
906
export interface IGetWidgetRequest {
907
907
/** The widget ID. */
908
- id ? : number ;
908
+ id : number ;
909
909
910
910
/** Don't get the widget if it has this ETag. */
911
911
ifNotETag ?: string ;
@@ -944,7 +944,7 @@ export interface IDeleteWidgetResponse {
944
944
/** Request for GetWidgetBatch. */
945
945
export interface IGetWidgetBatchRequest {
946
946
/** The IDs of the widgets to return. */
947
- ids ? : number [ ] ;
947
+ ids : number [ ] ;
948
948
}
949
949
950
950
/** Response for GetWidgetBatch. */
@@ -1075,9 +1075,9 @@ export interface IMixedResponse {
1075
1075
1076
1076
/** Request for Required. */
1077
1077
export interface IRequiredRequest {
1078
- query ? : string ;
1078
+ query : string ;
1079
1079
1080
- normal ? : string ;
1080
+ normal : string ;
1081
1081
1082
1082
widget ?: IWidget ;
1083
1083
@@ -1098,7 +1098,7 @@ export interface IRequiredRequest {
1098
1098
1099
1099
/** Response for Required. */
1100
1100
export interface IRequiredResponse {
1101
- normal ? : string ;
1101
+ normal : string ;
1102
1102
}
1103
1103
1104
1104
/** Request for MirrorBytes. */
@@ -1145,7 +1145,7 @@ export interface IWidget {
1145
1145
id ?: number ;
1146
1146
1147
1147
/** The name of the widget. */
1148
- name ? : string ;
1148
+ name : string ;
1149
1149
}
1150
1150
1151
1151
export interface IAny {
You can’t perform that action at this time.
0 commit comments