@girs/icalglib-3.0 3.0.0-3.2.5 → 3.0.0-3.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -738,13 +738,13 @@ export function error_get_error_state(error: ErrorEnum): ErrorState
738
738
  * the current error.
739
739
  * @returns The string representation of the current error
740
740
  */
741
- export function error_perror(): string | null
741
+ export function error_perror(): string
742
742
  /**
743
743
  * Restores the error to specified state.
744
744
  * @param error The error to be restored
745
745
  * @param es The error state to be restored
746
746
  */
747
- export function error_restore(error: string | null, es: ErrorState): void
747
+ export function error_restore(error: string, es: ErrorState): void
748
748
  /**
749
749
  * Sets the errno.
750
750
  * @param x The error to be set
@@ -762,13 +762,13 @@ export function error_stop_here(): void
762
762
  * @param e The #ICalErrorEnum to be translated
763
763
  * @returns The string representation of @e
764
764
  */
765
- export function error_strerror(e: ErrorEnum): string | null
765
+ export function error_strerror(e: ErrorEnum): string
766
766
  /**
767
767
  * Suppresses the error.
768
768
  * @param error The error to be suppressed
769
769
  * @returns The error state suppressed
770
770
  */
771
- export function error_supress(error: string | null): ErrorState
771
+ export function error_supress(error: string): ErrorState
772
772
  /**
773
773
  * Gets the setting of #ICalUnknowntokenhandling.
774
774
  * @returns The setting of #ICalUnknowntokenhandling
@@ -796,7 +796,7 @@ export function memory_append_char(buf: number[], pos: number[], ch: number): [
796
796
  * @param pos The position at which the new string to be appended
797
797
  * @param str The string to be allocated
798
798
  */
799
- export function memory_append_string(buf: number[], pos: number[], str: string | null): [ /* buf */ number[], /* pos */ number[] ]
799
+ export function memory_append_string(buf: number[], pos: number[], str: string): [ /* buf */ number[], /* pos */ number[] ]
800
800
  /**
801
801
  * Frees the buffer.
802
802
  * @param buf The buffer to be freed
@@ -821,7 +821,7 @@ export function memory_resize_buffer(buf: any | null, size: number): any | null
821
821
  * @param s The string to be cloned
822
822
  * @returns The cloned string.
823
823
  */
824
- export function memory_strdup(s: string | null): string | null
824
+ export function memory_strdup(s: string): string | null
825
825
  /**
826
826
  * Creates a buffer with target size.
827
827
  * @param size The size of the buffer to be created
@@ -833,7 +833,7 @@ export function memory_tmp_buffer(size: number): any | null
833
833
  * @param str The string to be copied
834
834
  * @returns The new copy of the @str.
835
835
  */
836
- export function memory_tmp_copy(str: string | null): string | null
836
+ export function memory_tmp_copy(str: string): string | null
837
837
  /**
838
838
  * Parses data to #ICalComponent using the given function.
839
839
  * @param func The parsing function
@@ -849,7 +849,7 @@ export function mime_parse(func: MimeParseFunc): Component
849
849
  * @param count The number of elements to be filled up in the `array`
850
850
  * @returns If successful, return the array. NULL if failed.
851
851
  */
852
- export function recur_expand_recurrence(rule: string | null, start: number, count: number): number[]
852
+ export function recur_expand_recurrence(rule: string, start: number, count: number): number[]
853
853
  /**
854
854
  * Returns the code for a request status.
855
855
  * @param stat The #ICalRequestStatus to be queried
@@ -861,7 +861,7 @@ export function request_status_code(stat: RequestStatus): string | null
861
861
  * @param stat The #ICalRequestStatus to be translated
862
862
  * @returns The description of the @stat
863
863
  */
864
- export function request_status_desc(stat: RequestStatus): string | null
864
+ export function request_status_desc(stat: RequestStatus): string
865
865
  /**
866
866
  * Returns a request status for major/minor status numbers.
867
867
  * @param major The major number
@@ -1006,7 +1006,7 @@ export interface Attach {
1006
1006
  * @param key name of the key for that association
1007
1007
  * @returns the data if found, or %NULL if no such data exists.
1008
1008
  */
1009
- get_data(key: string | null): any | null
1009
+ get_data(key: string): any | null
1010
1010
  /**
1011
1011
  * Checks whether the #ICalAttach is built from url.
1012
1012
  * @returns Whether the @attach is built from url
@@ -1071,14 +1071,14 @@ export class Attach extends Object {
1071
1071
  * @param free_fn The function used to free the data when the create #ICalAttach is destroyed
1072
1072
  * @returns The newly created #ICalAttach
1073
1073
  */
1074
- static new_from_data(data: string | null, free_fn: GLib.Func | null): Attach
1074
+ static new_from_data(data: string, free_fn: GLib.Func | null): Attach
1075
1075
  /**
1076
1076
  * Creates a new #ICalAttach from the url.
1077
1077
  * @constructor
1078
1078
  * @param url The url from which the object is created
1079
1079
  * @returns The newly created #ICalAttach from the @url
1080
1080
  */
1081
- static new_from_url(url: string | null): Attach
1081
+ static new_from_url(url: string): Attach
1082
1082
  _init(config?: Attach.ConstructorProperties): void
1083
1083
  }
1084
1084
 
@@ -1238,7 +1238,7 @@ export interface Component {
1238
1238
  * Gets the comment of the #ICalComponent.
1239
1239
  * @returns The comment of @comp.
1240
1240
  */
1241
- get_comment(): string | null
1241
+ get_comment(): string
1242
1242
  /**
1243
1243
  * Gets the current #ICalComponent in #ICalComponent.
1244
1244
  * @returns The current #ICalComponent.
@@ -1253,7 +1253,7 @@ export interface Component {
1253
1253
  * Gets the description of the #ICalComponent.
1254
1254
  * @returns The description of @comp.
1255
1255
  */
1256
- get_description(): string | null
1256
+ get_description(): string
1257
1257
  /**
1258
1258
  * Gets the dtend of the #ICalComponent.
1259
1259
  * @returns A #ICalTime.
@@ -1305,7 +1305,7 @@ export interface Component {
1305
1305
  * Gets the location of the #ICalComponent.
1306
1306
  * @returns The location of @comp.
1307
1307
  */
1308
- get_location(): string | null
1308
+ get_location(): string
1309
1309
  /**
1310
1310
  * Gets the method of the #ICalComponent.
1311
1311
  * @returns A #ICalPropertyMethod.
@@ -1337,7 +1337,7 @@ export interface Component {
1337
1337
  * Gets the relcalid of the #ICalComponent.
1338
1338
  * @returns The relcalid of @comp.
1339
1339
  */
1340
- get_relcalid(): string | null
1340
+ get_relcalid(): string
1341
1341
  /**
1342
1342
  * Gets the sequence of the #ICalComponent.
1343
1343
  * @returns The sequence of @comp.
@@ -1357,18 +1357,18 @@ export interface Component {
1357
1357
  * Gets the summary of the #ICalComponent.
1358
1358
  * @returns The summary of @comp.
1359
1359
  */
1360
- get_summary(): string | null
1360
+ get_summary(): string
1361
1361
  /**
1362
1362
  * Returns the icaltimezone in the component corresponding to the TZID, or NULL if it can't be found.
1363
1363
  * @param tzid A string representing timezone
1364
1364
  * @returns A #ICalTimezone.
1365
1365
  */
1366
- get_timezone(tzid: string | null): Timezone | null
1366
+ get_timezone(tzid: string): Timezone | null
1367
1367
  /**
1368
1368
  * Gets the uid of the #ICalComponent.
1369
1369
  * @returns The uid of @comp.
1370
1370
  */
1371
- get_uid(): string | null
1371
+ get_uid(): string
1372
1372
  /**
1373
1373
  * Checks whether #ICalComponent is valid.
1374
1374
  * @returns 1 if yes, 0 if not.
@@ -1405,12 +1405,12 @@ export interface Component {
1405
1405
  * Sets the comment of the #ICalComponent.
1406
1406
  * @param v A string representing comment
1407
1407
  */
1408
- set_comment(v: string | null): void
1408
+ set_comment(v: string): void
1409
1409
  /**
1410
1410
  * Sets the description of the #ICalComponent.
1411
1411
  * @param v A string representing description
1412
1412
  */
1413
- set_description(v: string | null): void
1413
+ set_description(v: string): void
1414
1414
  /**
1415
1415
  * Sets the dtend of the #ICalComponent.
1416
1416
  * @param v A #ICalTime
@@ -1440,7 +1440,7 @@ export interface Component {
1440
1440
  * Sets the location of the #ICalComponent.
1441
1441
  * @param v A string representing location
1442
1442
  */
1443
- set_location(v: string | null): void
1443
+ set_location(v: string): void
1444
1444
  /**
1445
1445
  * Sets the method of the #ICalComponent.
1446
1446
  * @param method A #ICalPropertyMethod
@@ -1460,7 +1460,7 @@ export interface Component {
1460
1460
  * Sets the relcalid of the #ICalComponent.
1461
1461
  * @param v A string representing relcalid
1462
1462
  */
1463
- set_relcalid(v: string | null): void
1463
+ set_relcalid(v: string): void
1464
1464
  /**
1465
1465
  * Sets the sequence of the #ICalComponent.
1466
1466
  * @param v The sequence number
@@ -1475,12 +1475,12 @@ export interface Component {
1475
1475
  * Sets the summary of the #ICalComponent.
1476
1476
  * @param v A string representing summary
1477
1477
  */
1478
- set_summary(v: string | null): void
1478
+ set_summary(v: string): void
1479
1479
  /**
1480
1480
  * Sets the uid of the #ICalComponent.
1481
1481
  * @param v A string representing uid
1482
1482
  */
1483
- set_uid(v: string | null): void
1483
+ set_uid(v: string): void
1484
1484
  /**
1485
1485
  * Removes all X-LIC-ERROR properties.
1486
1486
  */
@@ -1543,7 +1543,7 @@ export class Component extends Object {
1543
1543
  * @param str The string used to create #ICalComponent
1544
1544
  * @returns The newly created #ICalComponent based on @str.
1545
1545
  */
1546
- static new_from_string(str: string | null): Component
1546
+ static new_from_string(str: string): Component
1547
1547
  /**
1548
1548
  * Creates a #ICalComponent with the type to be vagenda.
1549
1549
  * @constructor
@@ -1622,7 +1622,7 @@ export class Component extends Object {
1622
1622
  * @param x_name The name of x property
1623
1623
  * @returns The newly created #ICalComponent.
1624
1624
  */
1625
- static new_x(x_name: string | null): Component
1625
+ static new_x(x_name: string): Component
1626
1626
  /**
1627
1627
  * Creates a #ICalComponent with the type to be xavailable.
1628
1628
  * @constructor
@@ -1653,7 +1653,7 @@ export class Component extends Object {
1653
1653
  * @param string A string
1654
1654
  * @returns A #ICalComponentKind
1655
1655
  */
1656
- static kind_from_string(string: string | null): ComponentKind
1656
+ static kind_from_string(string: string): ComponentKind
1657
1657
  /**
1658
1658
  * Checks if a #ICalComponentKind is valid.
1659
1659
  * @param kind A #ICalComponentKind
@@ -1665,7 +1665,7 @@ export class Component extends Object {
1665
1665
  * @param kind A #ICalComponentKind
1666
1666
  * @returns The string representation of @kind.
1667
1667
  */
1668
- static kind_to_string(kind: ComponentKind): string | null
1668
+ static kind_to_string(kind: ComponentKind): string
1669
1669
  }
1670
1670
 
1671
1671
  export module Datetimeperiod {
@@ -1904,7 +1904,7 @@ export class Duration extends Object {
1904
1904
  * @param str The string representation of the duration
1905
1905
  * @returns The newly created #ICalDuration
1906
1906
  */
1907
- static new_from_string(str: string | null): Duration
1907
+ static new_from_string(str: string): Duration
1908
1908
  /**
1909
1909
  * Creates a #ICalDuration with all the fields to be zero.
1910
1910
  * @constructor
@@ -2040,6 +2040,20 @@ export module Object {
2040
2040
  * responsible for a free of the native libical structure.
2041
2041
  */
2042
2042
  owner?: GObject.Object | null
2043
+ /**
2044
+ * Whether free the native libical structure on #ICalObject's finalize even
2045
+ * if the object has set an owner.
2046
+ */
2047
+ alwaysDestroy?: boolean | null
2048
+ /**
2049
+ * Whether the native libical structure is from a global shared memory.
2050
+ * If TRUE, then it is not freed on #ICalObject's finalize.
2051
+ */
2052
+ isGlobalMemory?: boolean | null
2053
+ /**
2054
+ * GDestroyNotify function to use to destroy the native libical pointer.
2055
+ */
2056
+ nativeDestroyFunc?: any | null
2043
2057
  }
2044
2058
 
2045
2059
  }
@@ -2053,11 +2067,21 @@ export interface Object {
2053
2067
  * if the object has set an owner.
2054
2068
  */
2055
2069
  always_destroy: boolean
2070
+ /**
2071
+ * Whether free the native libical structure on #ICalObject's finalize even
2072
+ * if the object has set an owner.
2073
+ */
2074
+ alwaysDestroy: boolean
2056
2075
  /**
2057
2076
  * Whether the native libical structure is from a global shared memory.
2058
2077
  * If TRUE, then it is not freed on #ICalObject's finalize.
2059
2078
  */
2060
2079
  readonly is_global_memory: boolean
2080
+ /**
2081
+ * Whether the native libical structure is from a global shared memory.
2082
+ * If TRUE, then it is not freed on #ICalObject's finalize.
2083
+ */
2084
+ readonly isGlobalMemory: boolean
2061
2085
  /**
2062
2086
  * The native libical structure for this ICalObject.
2063
2087
  */
@@ -2066,6 +2090,10 @@ export interface Object {
2066
2090
  * GDestroyNotify function to use to destroy the native libical pointer.
2067
2091
  */
2068
2092
  native_destroy_func: any
2093
+ /**
2094
+ * GDestroyNotify function to use to destroy the native libical pointer.
2095
+ */
2096
+ nativeDestroyFunc: any
2069
2097
  /**
2070
2098
  * Owner of the native libical structure. If set, then it is
2071
2099
  * responsible for a free of the native libical structure.
@@ -2295,42 +2323,42 @@ export interface Parameter {
2295
2323
  */
2296
2324
  isa_parameter(): number
2297
2325
  set_actionparam(v: ParameterAction): void
2298
- set_altrep(v: string | null): void
2299
- set_charset(v: string | null): void
2300
- set_cn(v: string | null): void
2326
+ set_altrep(v: string): void
2327
+ set_charset(v: string): void
2328
+ set_cn(v: string): void
2301
2329
  set_cutype(v: ParameterCutype): void
2302
- set_delegatedfrom(v: string | null): void
2303
- set_delegatedto(v: string | null): void
2304
- set_dir(v: string | null): void
2330
+ set_delegatedfrom(v: string): void
2331
+ set_delegatedto(v: string): void
2332
+ set_dir(v: string): void
2305
2333
  set_display(value: ParameterDisplay): void
2306
- set_email(value: string | null): void
2334
+ set_email(value: string): void
2307
2335
  set_enable(v: ParameterEnable): void
2308
2336
  set_encoding(v: ParameterEncoding): void
2309
2337
  set_fbtype(v: ParameterFbtype): void
2310
2338
  set_feature(value: ParameterFeature): void
2311
- set_filename(v: string | null): void
2312
- set_fmttype(v: string | null): void
2313
- set_iana(v: string | null): void
2339
+ set_filename(v: string): void
2340
+ set_fmttype(v: string): void
2341
+ set_iana(v: string): void
2314
2342
  /**
2315
2343
  * Sets the iana_name property of the native part of the #ICalParameter.
2316
2344
  * @param v The name to be set into the `param`
2317
2345
  */
2318
- set_iana_name(v: string | null): void
2346
+ set_iana_name(v: string): void
2319
2347
  /**
2320
2348
  * Sets the iana_value property of the native part of the #ICalParameter.
2321
2349
  * @param v The value to be set into the `param`
2322
2350
  */
2323
- set_iana_value(v: string | null): void
2324
- set_id(v: string | null): void
2325
- set_label(value: string | null): void
2326
- set_language(v: string | null): void
2327
- set_latency(v: string | null): void
2351
+ set_iana_value(v: string): void
2352
+ set_id(v: string): void
2353
+ set_label(value: string): void
2354
+ set_language(v: string): void
2355
+ set_latency(v: string): void
2328
2356
  set_local(v: ParameterLocal): void
2329
- set_localize(v: string | null): void
2330
- set_managedid(v: string | null): void
2331
- set_member(v: string | null): void
2332
- set_modified(v: string | null): void
2333
- set_options(v: string | null): void
2357
+ set_localize(v: string): void
2358
+ set_managedid(v: string): void
2359
+ set_member(v: string): void
2360
+ set_modified(v: string): void
2361
+ set_options(v: string): void
2334
2362
  /**
2335
2363
  * Sets the parent #ICalProperty of an #ICalParameter.
2336
2364
  * @param property The parent #ICalProperty
@@ -2338,9 +2366,9 @@ export interface Parameter {
2338
2366
  set_parent(property: Property | null): void
2339
2367
  set_partstat(v: ParameterPartstat): void
2340
2368
  set_patchaction(value: ParameterPatchaction): void
2341
- set_publiccomment(v: string | null): void
2369
+ set_publiccomment(v: string): void
2342
2370
  set_range(v: ParameterRange): void
2343
- set_reason(v: string | null): void
2371
+ set_reason(v: string): void
2344
2372
  set_related(v: ParameterRelated): void
2345
2373
  set_reltype(v: ParameterReltype): void
2346
2374
  set_required(v: ParameterRequired): void
@@ -2349,26 +2377,26 @@ export interface Parameter {
2349
2377
  set_rsvp(v: ParameterRsvp): void
2350
2378
  set_scheduleagent(v: ParameterScheduleagent): void
2351
2379
  set_scheduleforcesend(v: ParameterScheduleforcesend): void
2352
- set_schedulestatus(v: string | null): void
2353
- set_sentby(v: string | null): void
2354
- set_size(v: string | null): void
2380
+ set_schedulestatus(v: string): void
2381
+ set_sentby(v: string): void
2382
+ set_size(v: string): void
2355
2383
  set_stayinformed(v: ParameterStayinformed): void
2356
2384
  set_substate(v: ParameterSubstate): void
2357
- set_tzid(v: string | null): void
2385
+ set_tzid(v: string): void
2358
2386
  set_value(v: ParameterValue): void
2359
- set_x(v: string | null): void
2387
+ set_x(v: string): void
2360
2388
  set_xliccomparetype(v: ParameterXliccomparetype): void
2361
2389
  set_xlicerrortype(v: ParameterXlicerrortype): void
2362
2390
  /**
2363
2391
  * Sets the xname property of the native part of the #ICalParameter.
2364
2392
  * @param v The name to be set into the `param`
2365
2393
  */
2366
- set_xname(v: string | null): void
2394
+ set_xname(v: string): void
2367
2395
  /**
2368
2396
  * Sets the xvalue property of the native part of the #ICalParameter.
2369
2397
  * @param v The value to be set into the `param`
2370
2398
  */
2371
- set_xvalue(v: string | null): void
2399
+ set_xvalue(v: string): void
2372
2400
 
2373
2401
  // Class property signals of ICalGLib-3.0.ICalGLib.Parameter
2374
2402
 
@@ -2428,15 +2456,15 @@ export class Parameter extends Object {
2428
2456
  * @returns The newly created #ICalParameter.
2429
2457
  */
2430
2458
  static new_actionparam(v: ParameterAction): Parameter
2431
- static new_altrep(v: string | null): Parameter
2432
- static new_charset(v: string | null): Parameter
2433
- static new_cn(v: string | null): Parameter
2459
+ static new_altrep(v: string): Parameter
2460
+ static new_charset(v: string): Parameter
2461
+ static new_cn(v: string): Parameter
2434
2462
  static new_cutype(v: ParameterCutype): Parameter
2435
- static new_delegatedfrom(v: string | null): Parameter
2436
- static new_delegatedto(v: string | null): Parameter
2437
- static new_dir(v: string | null): Parameter
2463
+ static new_delegatedfrom(v: string): Parameter
2464
+ static new_delegatedto(v: string): Parameter
2465
+ static new_dir(v: string): Parameter
2438
2466
  static new_display(value: ParameterDisplay): Parameter
2439
- static new_email(value: string | null): Parameter
2467
+ static new_email(value: string): Parameter
2440
2468
  /**
2441
2469
  * Creates a new #ICalParameter according to the enable type.
2442
2470
  * @constructor
@@ -2459,15 +2487,15 @@ export class Parameter extends Object {
2459
2487
  */
2460
2488
  static new_fbtype(v: ParameterFbtype): Parameter
2461
2489
  static new_feature(value: ParameterFeature): Parameter
2462
- static new_filename(v: string | null): Parameter
2463
- static new_fmttype(v: string | null): Parameter
2490
+ static new_filename(v: string): Parameter
2491
+ static new_fmttype(v: string): Parameter
2464
2492
  /**
2465
2493
  * Creates a #ICalParameter from a string of form "PARAMNAME=VALUE".
2466
2494
  * @constructor
2467
2495
  * @param value The string from which the #ICalParameter is created
2468
2496
  * @returns The newly created $ICalParameter with the properties specified in the @value.
2469
2497
  */
2470
- static new_from_string(value: string | null): Parameter
2498
+ static new_from_string(value: string): Parameter
2471
2499
  /**
2472
2500
  * Creates a new #ICalParameter from just the value, the part after the "="
2473
2501
  * @constructor
@@ -2475,12 +2503,12 @@ export class Parameter extends Object {
2475
2503
  * @param value The string from which #ICalParameter to be created
2476
2504
  * @returns The newly created #ICalParameter
2477
2505
  */
2478
- static new_from_value_string(kind: ParameterKind, value: string | null): Parameter
2479
- static new_iana(v: string | null): Parameter
2480
- static new_id(v: string | null): Parameter
2481
- static new_label(value: string | null): Parameter
2482
- static new_language(v: string | null): Parameter
2483
- static new_latency(v: string | null): Parameter
2506
+ static new_from_value_string(kind: ParameterKind, value: string): Parameter
2507
+ static new_iana(v: string): Parameter
2508
+ static new_id(v: string): Parameter
2509
+ static new_label(value: string): Parameter
2510
+ static new_language(v: string): Parameter
2511
+ static new_latency(v: string): Parameter
2484
2512
  /**
2485
2513
  * Creates a new #ICalParameter according to the local type.
2486
2514
  * @constructor
@@ -2488,11 +2516,11 @@ export class Parameter extends Object {
2488
2516
  * @returns The newly created #ICalParameter.
2489
2517
  */
2490
2518
  static new_local(v: ParameterLocal): Parameter
2491
- static new_localize(v: string | null): Parameter
2492
- static new_managedid(v: string | null): Parameter
2493
- static new_member(v: string | null): Parameter
2494
- static new_modified(v: string | null): Parameter
2495
- static new_options(v: string | null): Parameter
2519
+ static new_localize(v: string): Parameter
2520
+ static new_managedid(v: string): Parameter
2521
+ static new_member(v: string): Parameter
2522
+ static new_modified(v: string): Parameter
2523
+ static new_options(v: string): Parameter
2496
2524
  /**
2497
2525
  * Creates a new #ICalParameter according to the partstat type.
2498
2526
  * @constructor
@@ -2501,7 +2529,7 @@ export class Parameter extends Object {
2501
2529
  */
2502
2530
  static new_partstat(v: ParameterPartstat): Parameter
2503
2531
  static new_patchaction(value: ParameterPatchaction): Parameter
2504
- static new_publiccomment(v: string | null): Parameter
2532
+ static new_publiccomment(v: string): Parameter
2505
2533
  /**
2506
2534
  * Creates a new #ICalParameter according to the range type.
2507
2535
  * @constructor
@@ -2509,7 +2537,7 @@ export class Parameter extends Object {
2509
2537
  * @returns The newly created #ICalParameter.
2510
2538
  */
2511
2539
  static new_range(v: ParameterRange): Parameter
2512
- static new_reason(v: string | null): Parameter
2540
+ static new_reason(v: string): Parameter
2513
2541
  /**
2514
2542
  * Creates a new #ICalParameter according to the related type.
2515
2543
  * @constructor
@@ -2566,9 +2594,9 @@ export class Parameter extends Object {
2566
2594
  * @returns The newly created #ICalParameter.
2567
2595
  */
2568
2596
  static new_scheduleforcesend(v: ParameterScheduleforcesend): Parameter
2569
- static new_schedulestatus(v: string | null): Parameter
2570
- static new_sentby(v: string | null): Parameter
2571
- static new_size(v: string | null): Parameter
2597
+ static new_schedulestatus(v: string): Parameter
2598
+ static new_sentby(v: string): Parameter
2599
+ static new_size(v: string): Parameter
2572
2600
  /**
2573
2601
  * Creates a new #ICalParameter according to the stayinformed type.
2574
2602
  * @constructor
@@ -2583,7 +2611,7 @@ export class Parameter extends Object {
2583
2611
  * @returns The newly created #ICalParameter.
2584
2612
  */
2585
2613
  static new_substate(v: ParameterSubstate): Parameter
2586
- static new_tzid(v: string | null): Parameter
2614
+ static new_tzid(v: string): Parameter
2587
2615
  /**
2588
2616
  * Creates a new #ICalParameter according to the value type.
2589
2617
  * @constructor
@@ -2591,7 +2619,7 @@ export class Parameter extends Object {
2591
2619
  * @returns The newly created #ICalParameter.
2592
2620
  */
2593
2621
  static new_value(v: ParameterValue): Parameter
2594
- static new_x(v: string | null): Parameter
2622
+ static new_x(v: string): Parameter
2595
2623
  /**
2596
2624
  * Creates a new #ICalParameter according to the xliccomparetype type.
2597
2625
  * @constructor
@@ -2612,7 +2640,7 @@ export class Parameter extends Object {
2612
2640
  * @param string The string representation of the #ICalParameter
2613
2641
  * @returns The #ICalParameterKind converted from @string
2614
2642
  */
2615
- static kind_from_string(string: string | null): ParameterKind
2643
+ static kind_from_string(string: string): ParameterKind
2616
2644
  /**
2617
2645
  * Checks whether #ICalParameterKind is valid.
2618
2646
  * @param kind The #ICalPropertyKind
@@ -2624,7 +2652,7 @@ export class Parameter extends Object {
2624
2652
  * @param kind The #ICalParameterKind to be converted
2625
2653
  * @returns The string representation of @kind.
2626
2654
  */
2627
- static kind_to_string(kind: ParameterKind): string | null
2655
+ static kind_to_string(kind: ParameterKind): string
2628
2656
  /**
2629
2657
  * Converts the #ICalParameterValue to #ICalValueKind.
2630
2658
  * @param value A #ICalParameterValue
@@ -2738,7 +2766,7 @@ export class Parser extends Object {
2738
2766
  * @param str The string to be parsed
2739
2767
  * @returns The #ICalComponent parsed from str.
2740
2768
  */
2741
- static parse_string(str: string | null): Component
2769
+ static parse_string(str: string): Component
2742
2770
  }
2743
2771
 
2744
2772
  export module Period {
@@ -2843,7 +2871,7 @@ export class Period extends Object {
2843
2871
  * @param str The string used to create the #ICalPeriod
2844
2872
  * @returns The newly created #ICalPeriod
2845
2873
  */
2846
- static new_from_string(str: string | null): Period
2874
+ static new_from_string(str: string): Period
2847
2875
  /**
2848
2876
  * Creates a default #ICalPeriod.
2849
2877
  * @constructor
@@ -2891,7 +2919,7 @@ export interface Property {
2891
2919
  * Gets the acceptresponse of #ICalProperty.
2892
2920
  * @returns Get the acceptresponse of #ICalProperty.
2893
2921
  */
2894
- get_acceptresponse(): string | null
2922
+ get_acceptresponse(): string
2895
2923
  /**
2896
2924
  * Gets the acknowledged time of #ICalProperty.
2897
2925
  * @returns Get the acknowledged time of #ICalProperty.
@@ -2906,7 +2934,7 @@ export interface Property {
2906
2934
  * Gets the allowconflict of #ICalProperty.
2907
2935
  * @returns Get the allowconflict of #ICalProperty.
2908
2936
  */
2909
- get_allowconflict(): string | null
2937
+ get_allowconflict(): string
2910
2938
  /**
2911
2939
  * Gets the attach of #ICalProperty.
2912
2940
  * @returns Get the attach of #ICalProperty.
@@ -2916,7 +2944,7 @@ export interface Property {
2916
2944
  * Gets the attendee of #ICalProperty.
2917
2945
  * @returns Get the attendee of #ICalProperty.
2918
2946
  */
2919
- get_attendee(): string | null
2947
+ get_attendee(): string
2920
2948
  /**
2921
2949
  * Gets the busytype of #ICalProperty.
2922
2950
  * @returns Get the busytype of #ICalProperty.
@@ -2926,27 +2954,27 @@ export interface Property {
2926
2954
  * Gets the calid of #ICalProperty.
2927
2955
  * @returns Get the calid of #ICalProperty.
2928
2956
  */
2929
- get_calid(): string | null
2957
+ get_calid(): string
2930
2958
  /**
2931
2959
  * Gets the calmaster of #ICalProperty.
2932
2960
  * @returns Get the calmaster of #ICalProperty.
2933
2961
  */
2934
- get_calmaster(): string | null
2962
+ get_calmaster(): string
2935
2963
  /**
2936
2964
  * Gets the calscale of #ICalProperty.
2937
2965
  * @returns Get the calscale of #ICalProperty.
2938
2966
  */
2939
- get_calscale(): string | null
2967
+ get_calscale(): string
2940
2968
  /**
2941
2969
  * Gets the capversion of #ICalProperty.
2942
2970
  * @returns Get the capversion of #ICalProperty.
2943
2971
  */
2944
- get_capversion(): string | null
2972
+ get_capversion(): string
2945
2973
  /**
2946
2974
  * Gets the carid of #ICalProperty.
2947
2975
  * @returns Get the carid of #ICalProperty.
2948
2976
  */
2949
- get_carid(): string | null
2977
+ get_carid(): string
2950
2978
  /**
2951
2979
  * Gets the carlevel of #ICalProperty.
2952
2980
  * @returns Get the carlevel of #ICalProperty.
@@ -2956,7 +2984,7 @@ export interface Property {
2956
2984
  * Gets the categories of #ICalProperty.
2957
2985
  * @returns Get the categories of #ICalProperty.
2958
2986
  */
2959
- get_categories(): string | null
2987
+ get_categories(): string
2960
2988
  /**
2961
2989
  * Gets the class of #ICalProperty.
2962
2990
  * @returns Get the class of #ICalProperty.
@@ -2971,12 +2999,12 @@ export interface Property {
2971
2999
  * Gets the color property of the `prop`.
2972
3000
  * @returns Get the color property.
2973
3001
  */
2974
- get_color(): string | null
3002
+ get_color(): string
2975
3003
  /**
2976
3004
  * Gets the comment of #ICalProperty.
2977
3005
  * @returns Get the comment of #ICalProperty.
2978
3006
  */
2979
- get_comment(): string | null
3007
+ get_comment(): string
2980
3008
  /**
2981
3009
  * Gets the completed time of #ICalProperty.
2982
3010
  * @returns Get the completed time of #ICalProperty.
@@ -2986,12 +3014,12 @@ export interface Property {
2986
3014
  * Gets the components of #ICalProperty.
2987
3015
  * @returns Get the components of #ICalProperty.
2988
3016
  */
2989
- get_components(): string | null
3017
+ get_components(): string
2990
3018
  /**
2991
3019
  * Gets the contact of #ICalProperty.
2992
3020
  * @returns Get the contact of #ICalProperty.
2993
3021
  */
2994
- get_contact(): string | null
3022
+ get_contact(): string
2995
3023
  /**
2996
3024
  * Gets the created time of #ICalProperty.
2997
3025
  * @returns Get the created time of #ICalProperty.
@@ -3001,7 +3029,7 @@ export interface Property {
3001
3029
  * Gets the csid of #ICalProperty.
3002
3030
  * @returns Get the csid of #ICalProperty.
3003
3031
  */
3004
- get_csid(): string | null
3032
+ get_csid(): string
3005
3033
  /**
3006
3034
  * Gets the datemax time of #ICalProperty.
3007
3035
  * @returns Get the datemax time of #ICalProperty.
@@ -3027,37 +3055,37 @@ export interface Property {
3027
3055
  * Gets the decreed of #ICalProperty.
3028
3056
  * @returns Get the decreed of #ICalProperty.
3029
3057
  */
3030
- get_decreed(): string | null
3058
+ get_decreed(): string
3031
3059
  /**
3032
3060
  * Gets the defaultcharset of #ICalProperty.
3033
3061
  * @returns Get the defaultcharset of #ICalProperty.
3034
3062
  */
3035
- get_defaultcharset(): string | null
3063
+ get_defaultcharset(): string
3036
3064
  /**
3037
3065
  * Gets the defaultlocale of #ICalProperty.
3038
3066
  * @returns Get the defaultlocale of #ICalProperty.
3039
3067
  */
3040
- get_defaultlocale(): string | null
3068
+ get_defaultlocale(): string
3041
3069
  /**
3042
3070
  * Gets the defaulttzid of #ICalProperty.
3043
3071
  * @returns Get the defaulttzid of #ICalProperty.
3044
3072
  */
3045
- get_defaulttzid(): string | null
3073
+ get_defaulttzid(): string
3046
3074
  /**
3047
3075
  * Gets the defaultvcars of #ICalProperty.
3048
3076
  * @returns Get the defaultvcars of #ICalProperty.
3049
3077
  */
3050
- get_defaultvcars(): string | null
3078
+ get_defaultvcars(): string
3051
3079
  /**
3052
3080
  * Gets the deny of #ICalProperty.
3053
3081
  * @returns Get the deny of #ICalProperty.
3054
3082
  */
3055
- get_deny(): string | null
3083
+ get_deny(): string
3056
3084
  /**
3057
3085
  * Gets the description of #ICalProperty.
3058
3086
  * @returns Get the description of #ICalProperty.
3059
3087
  */
3060
- get_description(): string | null
3088
+ get_description(): string
3061
3089
  /**
3062
3090
  * Gets the dtend time of #ICalProperty.
3063
3091
  * @returns Get the dtend time of #ICalProperty.
@@ -3123,12 +3151,12 @@ export interface Property {
3123
3151
  * Gets the grant of #ICalProperty.
3124
3152
  * @returns Get the grant of #ICalProperty.
3125
3153
  */
3126
- get_grant(): string | null
3154
+ get_grant(): string
3127
3155
  /**
3128
3156
  * Gets the itipversion of #ICalProperty.
3129
3157
  * @returns Get the itipversion of #ICalProperty.
3130
3158
  */
3131
- get_itipversion(): string | null
3159
+ get_itipversion(): string
3132
3160
  /**
3133
3161
  * Gets the lastmodified time of #ICalProperty.
3134
3162
  * @returns Get the lastmodified time of #ICalProperty.
@@ -3138,7 +3166,7 @@ export interface Property {
3138
3166
  * Gets the location of #ICalProperty.
3139
3167
  * @returns Get the location of #ICalProperty.
3140
3168
  */
3141
- get_location(): string | null
3169
+ get_location(): string
3142
3170
  /**
3143
3171
  * Gets the maxcomponentsize of #ICalProperty.
3144
3172
  * @returns Get the maxcomponentsize of #ICalProperty.
@@ -3173,12 +3201,12 @@ export interface Property {
3173
3201
  * Gets the multipart of #ICalProperty.
3174
3202
  * @returns Get the multipart of #ICalProperty.
3175
3203
  */
3176
- get_multipart(): string | null
3204
+ get_multipart(): string
3177
3205
  /**
3178
3206
  * Gets the name of #ICalProperty.
3179
3207
  * @returns Get the name of #ICalProperty.
3180
3208
  */
3181
- get_name(): string | null
3209
+ get_name(): string
3182
3210
  /**
3183
3211
  * Gets the next #ICalParameter from the parent #ICalProperty.
3184
3212
  * @param kind The target kind of #ICalParameter to be retrieved
@@ -3189,18 +3217,18 @@ export interface Property {
3189
3217
  * Gets the organizer of #ICalProperty.
3190
3218
  * @returns Get the organizer of #ICalProperty.
3191
3219
  */
3192
- get_organizer(): string | null
3220
+ get_organizer(): string
3193
3221
  /**
3194
3222
  * Gets the owner of #ICalProperty.
3195
3223
  * @returns Get the owner of #ICalProperty.
3196
3224
  */
3197
- get_owner(): string | null
3225
+ get_owner(): string
3198
3226
  /**
3199
3227
  * Gets the string representation of the target parameter in the #ICalProperty.
3200
3228
  * @param name The name of the target parameter
3201
3229
  * @returns The string representation of the parameter.
3202
3230
  */
3203
- get_parameter_as_string(name: string | null): string | null
3231
+ get_parameter_as_string(name: string): string | null
3204
3232
  /**
3205
3233
  * Gets the parent component of the property. Use with caution. When icalproperty is deallocated, it won't
3206
3234
  * deallocate its parent. However the #ICalComponent object created using this method will be deallocated
@@ -3218,7 +3246,7 @@ export interface Property {
3218
3246
  * Gets the permission of #ICalProperty.
3219
3247
  * @returns Get the permission of #ICalProperty.
3220
3248
  */
3221
- get_permission(): string | null
3249
+ get_permission(): string
3222
3250
  /**
3223
3251
  * Gets the pollcompletion of #ICalProperty.
3224
3252
  * @returns Get the pollcompletion of #ICalProperty.
@@ -3238,7 +3266,7 @@ export interface Property {
3238
3266
  * Gets the pollproperties of #ICalProperty.
3239
3267
  * @returns Get the pollproperties of #ICalProperty.
3240
3268
  */
3241
- get_pollproperties(): string | null
3269
+ get_pollproperties(): string
3242
3270
  /**
3243
3271
  * Gets the pollwinner of #ICalProperty.
3244
3272
  * @returns Get the pollwinner of #ICalProperty.
@@ -3253,7 +3281,7 @@ export interface Property {
3253
3281
  * Gets the prodid of #ICalProperty.
3254
3282
  * @returns Get the prodid of #ICalProperty.
3255
3283
  */
3256
- get_prodid(): string | null
3284
+ get_prodid(): string
3257
3285
  /**
3258
3286
  * Gets the property name of #ICalProperty.
3259
3287
  * @returns Property name of #ICalProperty.
@@ -3263,12 +3291,12 @@ export interface Property {
3263
3291
  * Gets the query of #ICalProperty.
3264
3292
  * @returns Get the query of #ICalProperty.
3265
3293
  */
3266
- get_query(): string | null
3294
+ get_query(): string
3267
3295
  /**
3268
3296
  * Gets the queryid of #ICalProperty.
3269
3297
  * @returns Get the queryid of #ICalProperty.
3270
3298
  */
3271
- get_queryid(): string | null
3299
+ get_queryid(): string
3272
3300
  /**
3273
3301
  * Gets the querylevel of #ICalProperty.
3274
3302
  * @returns Get the querylevel of #ICalProperty.
@@ -3278,7 +3306,7 @@ export interface Property {
3278
3306
  * Gets the queryname of #ICalProperty.
3279
3307
  * @returns Get the queryname of #ICalProperty.
3280
3308
  */
3281
- get_queryname(): string | null
3309
+ get_queryname(): string
3282
3310
  /**
3283
3311
  * Gets the rdate of #ICalProperty.
3284
3312
  * @returns Get the rdate of #ICalProperty.
@@ -3288,17 +3316,17 @@ export interface Property {
3288
3316
  * Gets the recuraccepted of #ICalProperty.
3289
3317
  * @returns Get the recuraccepted of #ICalProperty.
3290
3318
  */
3291
- get_recuraccepted(): string | null
3319
+ get_recuraccepted(): string
3292
3320
  /**
3293
3321
  * Gets the recurexpand of #ICalProperty.
3294
3322
  * @returns Get the recurexpand of #ICalProperty.
3295
3323
  */
3296
- get_recurexpand(): string | null
3324
+ get_recurexpand(): string
3297
3325
  /**
3298
3326
  * Gets the recurlimit of #ICalProperty.
3299
3327
  * @returns Get the recurlimit of #ICalProperty.
3300
3328
  */
3301
- get_recurlimit(): string | null
3329
+ get_recurlimit(): string
3302
3330
  /**
3303
3331
  * Gets the recurrenceid time of #ICalProperty.
3304
3332
  * @returns Get the recurrenceid time of #ICalProperty.
@@ -3308,12 +3336,12 @@ export interface Property {
3308
3336
  * Gets the relatedto of #ICalProperty.
3309
3337
  * @returns Get the relatedto of #ICalProperty.
3310
3338
  */
3311
- get_relatedto(): string | null
3339
+ get_relatedto(): string
3312
3340
  /**
3313
3341
  * Gets the relcalid of #ICalProperty.
3314
3342
  * @returns Get the relcalid of #ICalProperty.
3315
3343
  */
3316
- get_relcalid(): string | null
3344
+ get_relcalid(): string
3317
3345
  /**
3318
3346
  * Gets the repeat of #ICalProperty.
3319
3347
  * @returns Get the repeat of #ICalProperty.
@@ -3323,7 +3351,7 @@ export interface Property {
3323
3351
  * Gets the replyurl of #ICalProperty.
3324
3352
  * @returns Get the replyurl of #ICalProperty.
3325
3353
  */
3326
- get_replyurl(): string | null
3354
+ get_replyurl(): string
3327
3355
  /**
3328
3356
  * Gets the requeststatus of #ICalProperty.
3329
3357
  * @returns Get the requeststatus of #ICalProperty.
@@ -3333,7 +3361,7 @@ export interface Property {
3333
3361
  * Gets the resources of #ICalProperty.
3334
3362
  * @returns Get the resources of #ICalProperty.
3335
3363
  */
3336
- get_resources(): string | null
3364
+ get_resources(): string
3337
3365
  /**
3338
3366
  * Gets the response of #ICalProperty.
3339
3367
  * @returns Get the response of #ICalProperty.
@@ -3343,7 +3371,7 @@ export interface Property {
3343
3371
  * Gets the restriction of #ICalProperty.
3344
3372
  * @returns Get the restriction of #ICalProperty.
3345
3373
  */
3346
- get_restriction(): string | null
3374
+ get_restriction(): string
3347
3375
  /**
3348
3376
  * Gets the rrule recurrence type of #ICalProperty.
3349
3377
  * @returns Get the rrule recurrence type of #ICalProperty.
@@ -3353,7 +3381,7 @@ export interface Property {
3353
3381
  * Gets the scope of #ICalProperty.
3354
3382
  * @returns Get the scope of #ICalProperty.
3355
3383
  */
3356
- get_scope(): string | null
3384
+ get_scope(): string
3357
3385
  /**
3358
3386
  * Gets the sequence of #ICalProperty.
3359
3387
  * @returns Get the sequence of #ICalProperty.
@@ -3368,17 +3396,17 @@ export interface Property {
3368
3396
  * Gets the storesexpanded of #ICalProperty.
3369
3397
  * @returns Get the storesexpanded of #ICalProperty.
3370
3398
  */
3371
- get_storesexpanded(): string | null
3399
+ get_storesexpanded(): string
3372
3400
  /**
3373
3401
  * Gets the summary of #ICalProperty.
3374
3402
  * @returns Get the summary of #ICalProperty.
3375
3403
  */
3376
- get_summary(): string | null
3404
+ get_summary(): string
3377
3405
  /**
3378
3406
  * Gets the target of #ICalProperty.
3379
3407
  * @returns Get the target of #ICalProperty.
3380
3408
  */
3381
- get_target(): string | null
3409
+ get_target(): string
3382
3410
  /**
3383
3411
  * Gets the taskmode of #ICalProperty.
3384
3412
  * @returns Get the taskmode of #ICalProperty.
@@ -3398,17 +3426,17 @@ export interface Property {
3398
3426
  * Gets the tzid of #ICalProperty.
3399
3427
  * @returns Get the tzid of #ICalProperty.
3400
3428
  */
3401
- get_tzid(): string | null
3429
+ get_tzid(): string
3402
3430
  /**
3403
3431
  * Gets the tzidaliasof of #ICalProperty.
3404
3432
  * @returns Get the tzidaliasof of #ICalProperty.
3405
3433
  */
3406
- get_tzidaliasof(): string | null
3434
+ get_tzidaliasof(): string
3407
3435
  /**
3408
3436
  * Gets the tzname of #ICalProperty.
3409
3437
  * @returns Get the tzname of #ICalProperty.
3410
3438
  */
3411
- get_tzname(): string | null
3439
+ get_tzname(): string
3412
3440
  /**
3413
3441
  * Gets the tzoffsetfrom of #ICalProperty.
3414
3442
  * @returns Get the tzoffsetfrom of #ICalProperty.
@@ -3428,17 +3456,17 @@ export interface Property {
3428
3456
  * Gets the tzurl of #ICalProperty.
3429
3457
  * @returns Get the tzurl of #ICalProperty.
3430
3458
  */
3431
- get_tzurl(): string | null
3459
+ get_tzurl(): string
3432
3460
  /**
3433
3461
  * Gets the uid of #ICalProperty.
3434
3462
  * @returns Get the uid of #ICalProperty.
3435
3463
  */
3436
- get_uid(): string | null
3464
+ get_uid(): string
3437
3465
  /**
3438
3466
  * Gets the url of #ICalProperty.
3439
3467
  * @returns Get the url of #ICalProperty.
3440
3468
  */
3441
- get_url(): string | null
3469
+ get_url(): string
3442
3470
  /**
3443
3471
  * Gets the #ICalValue of #ICalProperty.
3444
3472
  * @returns The #ICalValue of @prop.
@@ -3453,17 +3481,17 @@ export interface Property {
3453
3481
  * Gets the version of #ICalProperty.
3454
3482
  * @returns Get the version of #ICalProperty.
3455
3483
  */
3456
- get_version(): string | null
3484
+ get_version(): string
3457
3485
  /**
3458
3486
  * Gets the voter of #ICalProperty.
3459
3487
  * @returns Get the voter of #ICalProperty.
3460
3488
  */
3461
- get_voter(): string | null
3489
+ get_voter(): string
3462
3490
  /**
3463
3491
  * Gets the x of #ICalProperty.
3464
3492
  * @returns Get the x of #ICalProperty.
3465
3493
  */
3466
- get_x(): string | null
3494
+ get_x(): string
3467
3495
  /**
3468
3496
  * Gets the name of x property.
3469
3497
  * @returns The name of x property.
@@ -3478,42 +3506,42 @@ export interface Property {
3478
3506
  * Gets the xlicclustercount of #ICalProperty.
3479
3507
  * @returns Get the xlicclustercount of #ICalProperty.
3480
3508
  */
3481
- get_xlicclustercount(): string | null
3509
+ get_xlicclustercount(): string
3482
3510
  /**
3483
3511
  * Gets the xlicerror of #ICalProperty.
3484
3512
  * @returns Get the xlicerror of #ICalProperty.
3485
3513
  */
3486
- get_xlicerror(): string | null
3514
+ get_xlicerror(): string
3487
3515
  /**
3488
3516
  * Gets the xlicmimecharset of #ICalProperty.
3489
3517
  * @returns Get the xlicmimecharset of #ICalProperty.
3490
3518
  */
3491
- get_xlicmimecharset(): string | null
3519
+ get_xlicmimecharset(): string
3492
3520
  /**
3493
3521
  * Gets the xlicmimecid of #ICalProperty.
3494
3522
  * @returns Get the xlicmimecid of #ICalProperty.
3495
3523
  */
3496
- get_xlicmimecid(): string | null
3524
+ get_xlicmimecid(): string
3497
3525
  /**
3498
3526
  * Gets the xlicmimecontenttype of #ICalProperty.
3499
3527
  * @returns Get the xlicmimecontenttype of #ICalProperty.
3500
3528
  */
3501
- get_xlicmimecontenttype(): string | null
3529
+ get_xlicmimecontenttype(): string
3502
3530
  /**
3503
3531
  * Gets the xlicmimeencoding of #ICalProperty.
3504
3532
  * @returns Get the xlicmimeencoding of #ICalProperty.
3505
3533
  */
3506
- get_xlicmimeencoding(): string | null
3534
+ get_xlicmimeencoding(): string
3507
3535
  /**
3508
3536
  * Gets the xlicmimefilename of #ICalProperty.
3509
3537
  * @returns Get the xlicmimefilename of #ICalProperty.
3510
3538
  */
3511
- get_xlicmimefilename(): string | null
3539
+ get_xlicmimefilename(): string
3512
3540
  /**
3513
3541
  * Gets the xlicmimeoptinfo of #ICalProperty.
3514
3542
  * @returns Get the xlicmimeoptinfo of #ICalProperty.
3515
3543
  */
3516
- get_xlicmimeoptinfo(): string | null
3544
+ get_xlicmimeoptinfo(): string
3517
3545
  /**
3518
3546
  * Gets the kind of #ICalProperty.
3519
3547
  * @returns The type of #ICalProperty.
@@ -3533,7 +3561,7 @@ export interface Property {
3533
3561
  * Removes parameter in the #ICalProperty by name.
3534
3562
  * @param name The name of the parameter to be removed
3535
3563
  */
3536
- remove_parameter_by_name(name: string | null): void
3564
+ remove_parameter_by_name(name: string): void
3537
3565
  /**
3538
3566
  * Removes the parameter in the #ICalProperty by ref.
3539
3567
  * @param param The #ICalParameter to be removed
@@ -3543,7 +3571,7 @@ export interface Property {
3543
3571
  * Sets the acceptresponse for the #ICalProperty.
3544
3572
  * @param v The acceptresponse
3545
3573
  */
3546
- set_acceptresponse(v: string | null): void
3574
+ set_acceptresponse(v: string): void
3547
3575
  /**
3548
3576
  * Sets the acknowledged time for the #ICalProperty.
3549
3577
  * @param v The acknowledgement time
@@ -3558,7 +3586,7 @@ export interface Property {
3558
3586
  * Sets the allowconflict for the #ICalProperty.
3559
3587
  * @param v The allowconflict
3560
3588
  */
3561
- set_allowconflict(v: string | null): void
3589
+ set_allowconflict(v: string): void
3562
3590
  /**
3563
3591
  * Sets the attach for the #ICalProperty.
3564
3592
  * @param v The attach
@@ -3568,7 +3596,7 @@ export interface Property {
3568
3596
  * Sets the attendee for the #ICalProperty.
3569
3597
  * @param v The attendee
3570
3598
  */
3571
- set_attendee(v: string | null): void
3599
+ set_attendee(v: string): void
3572
3600
  /**
3573
3601
  * Sets the busytype for the #ICalProperty.
3574
3602
  * @param v The busytype
@@ -3578,27 +3606,27 @@ export interface Property {
3578
3606
  * Sets the calid for the #ICalProperty.
3579
3607
  * @param v The calid
3580
3608
  */
3581
- set_calid(v: string | null): void
3609
+ set_calid(v: string): void
3582
3610
  /**
3583
3611
  * Sets the calmaster for the #ICalProperty.
3584
3612
  * @param v The calmaster
3585
3613
  */
3586
- set_calmaster(v: string | null): void
3614
+ set_calmaster(v: string): void
3587
3615
  /**
3588
3616
  * Sets the calscale for the #ICalProperty.
3589
3617
  * @param v The calscale
3590
3618
  */
3591
- set_calscale(v: string | null): void
3619
+ set_calscale(v: string): void
3592
3620
  /**
3593
3621
  * Sets the capversion for the #ICalProperty.
3594
3622
  * @param v The capversion
3595
3623
  */
3596
- set_capversion(v: string | null): void
3624
+ set_capversion(v: string): void
3597
3625
  /**
3598
3626
  * Sets the carid for the #ICalProperty.
3599
3627
  * @param v The carid
3600
3628
  */
3601
- set_carid(v: string | null): void
3629
+ set_carid(v: string): void
3602
3630
  /**
3603
3631
  * Sets the carlevel for the #ICalProperty.
3604
3632
  * @param v The carlevel
@@ -3608,7 +3636,7 @@ export interface Property {
3608
3636
  * Sets the categories for the #ICalProperty.
3609
3637
  * @param v The categories
3610
3638
  */
3611
- set_categories(v: string | null): void
3639
+ set_categories(v: string): void
3612
3640
  /**
3613
3641
  * Sets the class for the #ICalProperty.
3614
3642
  * @param v The class
@@ -3623,12 +3651,12 @@ export interface Property {
3623
3651
  * Sets the color for the `prop`.
3624
3652
  * @param v The color
3625
3653
  */
3626
- set_color(v: string | null): void
3654
+ set_color(v: string): void
3627
3655
  /**
3628
3656
  * Sets the comment for the #ICalProperty.
3629
3657
  * @param v The comment
3630
3658
  */
3631
- set_comment(v: string | null): void
3659
+ set_comment(v: string): void
3632
3660
  /**
3633
3661
  * Sets the completed time for the #ICalProperty.
3634
3662
  * @param v The completed time
@@ -3638,12 +3666,12 @@ export interface Property {
3638
3666
  * Sets the components for the #ICalProperty.
3639
3667
  * @param v The components
3640
3668
  */
3641
- set_components(v: string | null): void
3669
+ set_components(v: string): void
3642
3670
  /**
3643
3671
  * Sets the contact for the #ICalProperty.
3644
3672
  * @param v The contact
3645
3673
  */
3646
- set_contact(v: string | null): void
3674
+ set_contact(v: string): void
3647
3675
  /**
3648
3676
  * Sets the created time for the #ICalProperty.
3649
3677
  * @param v The created time
@@ -3653,7 +3681,7 @@ export interface Property {
3653
3681
  * Sets the csid for the #ICalProperty.
3654
3682
  * @param v The csid
3655
3683
  */
3656
- set_csid(v: string | null): void
3684
+ set_csid(v: string): void
3657
3685
  /**
3658
3686
  * Sets the datemax time for the #ICalProperty.
3659
3687
  * @param v The datemax time
@@ -3668,37 +3696,37 @@ export interface Property {
3668
3696
  * Sets the decreed for the #ICalProperty.
3669
3697
  * @param v The decreed
3670
3698
  */
3671
- set_decreed(v: string | null): void
3699
+ set_decreed(v: string): void
3672
3700
  /**
3673
3701
  * Sets the defaultcharset for the #ICalProperty.
3674
3702
  * @param v The defaultcharset
3675
3703
  */
3676
- set_defaultcharset(v: string | null): void
3704
+ set_defaultcharset(v: string): void
3677
3705
  /**
3678
3706
  * Sets the defaultlocale for the #ICalProperty.
3679
3707
  * @param v The defaultlocale
3680
3708
  */
3681
- set_defaultlocale(v: string | null): void
3709
+ set_defaultlocale(v: string): void
3682
3710
  /**
3683
3711
  * Sets the defaulttzid for the #ICalProperty.
3684
3712
  * @param v The defaulttzid
3685
3713
  */
3686
- set_defaulttzid(v: string | null): void
3714
+ set_defaulttzid(v: string): void
3687
3715
  /**
3688
3716
  * Sets the defaultvcars for the #ICalProperty.
3689
3717
  * @param v The defaultvcars
3690
3718
  */
3691
- set_defaultvcars(v: string | null): void
3719
+ set_defaultvcars(v: string): void
3692
3720
  /**
3693
3721
  * Sets the deny for the #ICalProperty.
3694
3722
  * @param v The deny
3695
3723
  */
3696
- set_deny(v: string | null): void
3724
+ set_deny(v: string): void
3697
3725
  /**
3698
3726
  * Sets the description for the #ICalProperty.
3699
3727
  * @param v The description
3700
3728
  */
3701
- set_description(v: string | null): void
3729
+ set_description(v: string): void
3702
3730
  /**
3703
3731
  * Sets the dtend time for the #ICalProperty.
3704
3732
  * @param v The dtend time
@@ -3758,12 +3786,12 @@ export interface Property {
3758
3786
  * Sets the grant for the #ICalProperty.
3759
3787
  * @param v The grant
3760
3788
  */
3761
- set_grant(v: string | null): void
3789
+ set_grant(v: string): void
3762
3790
  /**
3763
3791
  * Sets the itipversion for the #ICalProperty.
3764
3792
  * @param v The itipversion
3765
3793
  */
3766
- set_itipversion(v: string | null): void
3794
+ set_itipversion(v: string): void
3767
3795
  /**
3768
3796
  * Sets the lastmodified time for the #ICalProperty.
3769
3797
  * @param v The lastmodified time
@@ -3773,7 +3801,7 @@ export interface Property {
3773
3801
  * Sets the location for the #ICalProperty.
3774
3802
  * @param v The location
3775
3803
  */
3776
- set_location(v: string | null): void
3804
+ set_location(v: string): void
3777
3805
  /**
3778
3806
  * Sets the maxcomponentsize for the #ICalProperty.
3779
3807
  * @param v The maxcomponentsize
@@ -3808,22 +3836,22 @@ export interface Property {
3808
3836
  * Sets the multipart for the #ICalProperty.
3809
3837
  * @param v The multipart
3810
3838
  */
3811
- set_multipart(v: string | null): void
3839
+ set_multipart(v: string): void
3812
3840
  /**
3813
3841
  * Sets the name for the #ICalProperty.
3814
3842
  * @param v The name
3815
3843
  */
3816
- set_name(v: string | null): void
3844
+ set_name(v: string): void
3817
3845
  /**
3818
3846
  * Sets the organizer for the #ICalProperty.
3819
3847
  * @param v The organizer
3820
3848
  */
3821
- set_organizer(v: string | null): void
3849
+ set_organizer(v: string): void
3822
3850
  /**
3823
3851
  * Sets the owner for the #ICalProperty.
3824
3852
  * @param v The owner
3825
3853
  */
3826
- set_owner(v: string | null): void
3854
+ set_owner(v: string): void
3827
3855
 
3828
3856
  // Overloads of set_owner
3829
3857
 
@@ -3844,7 +3872,7 @@ export interface Property {
3844
3872
  * @param name The name of the parameter
3845
3873
  * @param value The value of the parameter
3846
3874
  */
3847
- set_parameter_from_string(name: string | null, value: string | null): void
3875
+ set_parameter_from_string(name: string, value: string): void
3848
3876
  /**
3849
3877
  * Sets the parent #ICalComponent of the specified #ICalProperty.
3850
3878
  * @param component An #ICalComponent
@@ -3859,7 +3887,7 @@ export interface Property {
3859
3887
  * Sets the permission for the #ICalProperty.
3860
3888
  * @param v The permission
3861
3889
  */
3862
- set_permission(v: string | null): void
3890
+ set_permission(v: string): void
3863
3891
  /**
3864
3892
  * Sets the pollcompletion for the #ICalProperty.
3865
3893
  * @param v The pollcompletion
@@ -3879,7 +3907,7 @@ export interface Property {
3879
3907
  * Sets the pollproperties for the #ICalProperty.
3880
3908
  * @param v The pollproperties
3881
3909
  */
3882
- set_pollproperties(v: string | null): void
3910
+ set_pollproperties(v: string): void
3883
3911
  /**
3884
3912
  * Sets the pollwinner for the #ICalProperty.
3885
3913
  * @param v The pollwinner
@@ -3894,17 +3922,17 @@ export interface Property {
3894
3922
  * Sets the prodid for the #ICalProperty.
3895
3923
  * @param v The prodid
3896
3924
  */
3897
- set_prodid(v: string | null): void
3925
+ set_prodid(v: string): void
3898
3926
  /**
3899
3927
  * Sets the query for the #ICalProperty.
3900
3928
  * @param v The query
3901
3929
  */
3902
- set_query(v: string | null): void
3930
+ set_query(v: string): void
3903
3931
  /**
3904
3932
  * Sets the queryid for the #ICalProperty.
3905
3933
  * @param v The queryid
3906
3934
  */
3907
- set_queryid(v: string | null): void
3935
+ set_queryid(v: string): void
3908
3936
  /**
3909
3937
  * Sets the querylevel for the #ICalProperty.
3910
3938
  * @param v The querylevel
@@ -3914,7 +3942,7 @@ export interface Property {
3914
3942
  * Sets the queryname for the #ICalProperty.
3915
3943
  * @param v The queryname
3916
3944
  */
3917
- set_queryname(v: string | null): void
3945
+ set_queryname(v: string): void
3918
3946
  /**
3919
3947
  * Sets the rdate for the #ICalProperty.
3920
3948
  * @param v The rdate
@@ -3924,17 +3952,17 @@ export interface Property {
3924
3952
  * Sets the recuraccepted for the #ICalProperty.
3925
3953
  * @param v The recuraccepted
3926
3954
  */
3927
- set_recuraccepted(v: string | null): void
3955
+ set_recuraccepted(v: string): void
3928
3956
  /**
3929
3957
  * Sets the recurexpand for the #ICalProperty.
3930
3958
  * @param v The recurexpand
3931
3959
  */
3932
- set_recurexpand(v: string | null): void
3960
+ set_recurexpand(v: string): void
3933
3961
  /**
3934
3962
  * Sets the recurlimit for the #ICalProperty.
3935
3963
  * @param v The recurlimit
3936
3964
  */
3937
- set_recurlimit(v: string | null): void
3965
+ set_recurlimit(v: string): void
3938
3966
  /**
3939
3967
  * Sets the recurrenceid time for the #ICalProperty.
3940
3968
  * @param v The recurrenceid time
@@ -3944,12 +3972,12 @@ export interface Property {
3944
3972
  * Sets the relatedto for the #ICalProperty.
3945
3973
  * @param v The relatedto
3946
3974
  */
3947
- set_relatedto(v: string | null): void
3975
+ set_relatedto(v: string): void
3948
3976
  /**
3949
3977
  * Sets the relcalid for the #ICalProperty.
3950
3978
  * @param v The relcalid
3951
3979
  */
3952
- set_relcalid(v: string | null): void
3980
+ set_relcalid(v: string): void
3953
3981
  /**
3954
3982
  * Sets the repeat for the #ICalProperty.
3955
3983
  * @param v The repeat
@@ -3959,7 +3987,7 @@ export interface Property {
3959
3987
  * Sets the replyurl for the #ICalProperty.
3960
3988
  * @param v The replyurl
3961
3989
  */
3962
- set_replyurl(v: string | null): void
3990
+ set_replyurl(v: string): void
3963
3991
  /**
3964
3992
  * Sets the requeststatus for the #ICalProperty.
3965
3993
  * @param v The requeststatus
@@ -3969,7 +3997,7 @@ export interface Property {
3969
3997
  * Sets the resources for the #ICalProperty.
3970
3998
  * @param v The resources
3971
3999
  */
3972
- set_resources(v: string | null): void
4000
+ set_resources(v: string): void
3973
4001
  /**
3974
4002
  * Sets the response for the #ICalProperty.
3975
4003
  * @param v The response
@@ -3979,7 +4007,7 @@ export interface Property {
3979
4007
  * Sets the restriction for the #ICalProperty.
3980
4008
  * @param v The restriction
3981
4009
  */
3982
- set_restriction(v: string | null): void
4010
+ set_restriction(v: string): void
3983
4011
  /**
3984
4012
  * Sets the rrule for the #ICalProperty.
3985
4013
  * @param v The rrule recurrence type
@@ -3989,7 +4017,7 @@ export interface Property {
3989
4017
  * Sets the scope for the #ICalProperty.
3990
4018
  * @param v The scope
3991
4019
  */
3992
- set_scope(v: string | null): void
4020
+ set_scope(v: string): void
3993
4021
  /**
3994
4022
  * Sets the sequence for the #ICalProperty.
3995
4023
  * @param v The sequence
@@ -4004,17 +4032,17 @@ export interface Property {
4004
4032
  * Sets the storesexpanded for the #ICalProperty.
4005
4033
  * @param v The storesexpanded
4006
4034
  */
4007
- set_storesexpanded(v: string | null): void
4035
+ set_storesexpanded(v: string): void
4008
4036
  /**
4009
4037
  * Sets the summary for the #ICalProperty.
4010
4038
  * @param v The summary
4011
4039
  */
4012
- set_summary(v: string | null): void
4040
+ set_summary(v: string): void
4013
4041
  /**
4014
4042
  * Sets the target for the #ICalProperty.
4015
4043
  * @param v The target
4016
4044
  */
4017
- set_target(v: string | null): void
4045
+ set_target(v: string): void
4018
4046
  /**
4019
4047
  * Sets the taskmode for the #ICalProperty.
4020
4048
  * @param v The taskmode
@@ -4034,17 +4062,17 @@ export interface Property {
4034
4062
  * Sets the tzid for the #ICalProperty.
4035
4063
  * @param v The tzid
4036
4064
  */
4037
- set_tzid(v: string | null): void
4065
+ set_tzid(v: string): void
4038
4066
  /**
4039
4067
  * Sets the tzidaliasof for the #ICalProperty.
4040
4068
  * @param v The tzidaliasof
4041
4069
  */
4042
- set_tzidaliasof(v: string | null): void
4070
+ set_tzidaliasof(v: string): void
4043
4071
  /**
4044
4072
  * Sets the tzname for the #ICalProperty.
4045
4073
  * @param v The tzname
4046
4074
  */
4047
- set_tzname(v: string | null): void
4075
+ set_tzname(v: string): void
4048
4076
  /**
4049
4077
  * Sets the tzoffsetfrom for the #ICalProperty.
4050
4078
  * @param v The tzoffsetfrom
@@ -4064,17 +4092,17 @@ export interface Property {
4064
4092
  * Sets the tzurl for the #ICalProperty.
4065
4093
  * @param v The tzurl
4066
4094
  */
4067
- set_tzurl(v: string | null): void
4095
+ set_tzurl(v: string): void
4068
4096
  /**
4069
4097
  * Sets the uid for the #ICalProperty.
4070
4098
  * @param v The uid
4071
4099
  */
4072
- set_uid(v: string | null): void
4100
+ set_uid(v: string): void
4073
4101
  /**
4074
4102
  * Sets the url for the #ICalProperty.
4075
4103
  * @param v The url
4076
4104
  */
4077
- set_url(v: string | null): void
4105
+ set_url(v: string): void
4078
4106
  /**
4079
4107
  * Sets the #ICalProperty with the #ICalValue.
4080
4108
  * @param value The #ICalValue will be set as the property of `prop`
@@ -4085,27 +4113,27 @@ export interface Property {
4085
4113
  * @param value The value used to construct the #ICalValue
4086
4114
  * @param kind The kind used to construct the #ICalValue
4087
4115
  */
4088
- set_value_from_string(value: string | null, kind: string | null): void
4116
+ set_value_from_string(value: string, kind: string): void
4089
4117
  /**
4090
4118
  * Sets the version for the #ICalProperty.
4091
4119
  * @param v The version
4092
4120
  */
4093
- set_version(v: string | null): void
4121
+ set_version(v: string): void
4094
4122
  /**
4095
4123
  * Sets the voter for the #ICalProperty.
4096
4124
  * @param v The voter
4097
4125
  */
4098
- set_voter(v: string | null): void
4126
+ set_voter(v: string): void
4099
4127
  /**
4100
4128
  * Sets the x for the #ICalProperty.
4101
4129
  * @param v The x
4102
4130
  */
4103
- set_x(v: string | null): void
4131
+ set_x(v: string): void
4104
4132
  /**
4105
4133
  * Sets the name of x property for the #ICalProperty.
4106
4134
  * @param name The name string
4107
4135
  */
4108
- set_x_name(name: string | null): void
4136
+ set_x_name(name: string): void
4109
4137
  /**
4110
4138
  * Sets the xlicclass for the #ICalProperty.
4111
4139
  * @param v The xlicclass
@@ -4115,42 +4143,42 @@ export interface Property {
4115
4143
  * Sets the xlicclustercount for the #ICalProperty.
4116
4144
  * @param v The xlicclustercount
4117
4145
  */
4118
- set_xlicclustercount(v: string | null): void
4146
+ set_xlicclustercount(v: string): void
4119
4147
  /**
4120
4148
  * Sets the xlicerror for the #ICalProperty.
4121
4149
  * @param v The xlicerror
4122
4150
  */
4123
- set_xlicerror(v: string | null): void
4151
+ set_xlicerror(v: string): void
4124
4152
  /**
4125
4153
  * Sets the xlicmimecharset for the #ICalProperty.
4126
4154
  * @param v The xlicmimecharset
4127
4155
  */
4128
- set_xlicmimecharset(v: string | null): void
4156
+ set_xlicmimecharset(v: string): void
4129
4157
  /**
4130
4158
  * Sets the xlicmimecid for the #ICalProperty.
4131
4159
  * @param v The xlicmimecid
4132
4160
  */
4133
- set_xlicmimecid(v: string | null): void
4161
+ set_xlicmimecid(v: string): void
4134
4162
  /**
4135
4163
  * Sets the xlicmimecontenttype for the #ICalProperty.
4136
4164
  * @param v The xlicmimecontenttype
4137
4165
  */
4138
- set_xlicmimecontenttype(v: string | null): void
4166
+ set_xlicmimecontenttype(v: string): void
4139
4167
  /**
4140
4168
  * Sets the xlicmimeencoding for the #ICalProperty.
4141
4169
  * @param v The xlicmimeencoding
4142
4170
  */
4143
- set_xlicmimeencoding(v: string | null): void
4171
+ set_xlicmimeencoding(v: string): void
4144
4172
  /**
4145
4173
  * Sets the xlicmimefilename for the #ICalProperty.
4146
4174
  * @param v The xlicmimefilename
4147
4175
  */
4148
- set_xlicmimefilename(v: string | null): void
4176
+ set_xlicmimefilename(v: string): void
4149
4177
  /**
4150
4178
  * Sets the xlicmimeoptinfo for the #ICalProperty.
4151
4179
  * @param v The xlicmimeoptinfo
4152
4180
  */
4153
- set_xlicmimeoptinfo(v: string | null): void
4181
+ set_xlicmimeoptinfo(v: string): void
4154
4182
 
4155
4183
  // Class property signals of ICalGLib-3.0.ICalGLib.Property
4156
4184
 
@@ -4209,7 +4237,7 @@ export class Property extends Object {
4209
4237
  * @param v The acceptresponse
4210
4238
  * @returns The newly created #ICalProperty
4211
4239
  */
4212
- static new_acceptresponse(v: string | null): Property
4240
+ static new_acceptresponse(v: string): Property
4213
4241
  /**
4214
4242
  * Creates a new #ICalProperty.
4215
4243
  * @constructor
@@ -4230,7 +4258,7 @@ export class Property extends Object {
4230
4258
  * @param v The allowconflict
4231
4259
  * @returns The newly created #ICalProperty
4232
4260
  */
4233
- static new_allowconflict(v: string | null): Property
4261
+ static new_allowconflict(v: string): Property
4234
4262
  /**
4235
4263
  * Creates a new #ICalProperty.
4236
4264
  * @constructor
@@ -4244,7 +4272,7 @@ export class Property extends Object {
4244
4272
  * @param v The attendee
4245
4273
  * @returns The newly created #ICalProperty
4246
4274
  */
4247
- static new_attendee(v: string | null): Property
4275
+ static new_attendee(v: string): Property
4248
4276
  /**
4249
4277
  * Creates a new #ICalProperty.
4250
4278
  * @constructor
@@ -4258,35 +4286,35 @@ export class Property extends Object {
4258
4286
  * @param v The calid
4259
4287
  * @returns The newly created #ICalProperty
4260
4288
  */
4261
- static new_calid(v: string | null): Property
4289
+ static new_calid(v: string): Property
4262
4290
  /**
4263
4291
  * Creates a new #ICalProperty.
4264
4292
  * @constructor
4265
4293
  * @param v The calmaster
4266
4294
  * @returns The newly created #ICalProperty
4267
4295
  */
4268
- static new_calmaster(v: string | null): Property
4296
+ static new_calmaster(v: string): Property
4269
4297
  /**
4270
4298
  * Creates a new #ICalProperty.
4271
4299
  * @constructor
4272
4300
  * @param v The calscale
4273
4301
  * @returns The newly created #ICalProperty
4274
4302
  */
4275
- static new_calscale(v: string | null): Property
4303
+ static new_calscale(v: string): Property
4276
4304
  /**
4277
4305
  * Creates a new #ICalProperty.
4278
4306
  * @constructor
4279
4307
  * @param v The capversion
4280
4308
  * @returns The newly created #ICalProperty
4281
4309
  */
4282
- static new_capversion(v: string | null): Property
4310
+ static new_capversion(v: string): Property
4283
4311
  /**
4284
4312
  * Creates a new #ICalProperty.
4285
4313
  * @constructor
4286
4314
  * @param v The carid
4287
4315
  * @returns The newly created #ICalProperty
4288
4316
  */
4289
- static new_carid(v: string | null): Property
4317
+ static new_carid(v: string): Property
4290
4318
  /**
4291
4319
  * Creates a new #ICalProperty.
4292
4320
  * @constructor
@@ -4300,7 +4328,7 @@ export class Property extends Object {
4300
4328
  * @param v The categories
4301
4329
  * @returns The newly created #ICalProperty
4302
4330
  */
4303
- static new_categories(v: string | null): Property
4331
+ static new_categories(v: string): Property
4304
4332
  /**
4305
4333
  * Creates a new #ICalProperty.
4306
4334
  * @constructor
@@ -4321,14 +4349,14 @@ export class Property extends Object {
4321
4349
  * @param v The color
4322
4350
  * @returns The newly created #ICalProperty
4323
4351
  */
4324
- static new_color(v: string | null): Property
4352
+ static new_color(v: string): Property
4325
4353
  /**
4326
4354
  * Creates a new #ICalProperty.
4327
4355
  * @constructor
4328
4356
  * @param v The comment
4329
4357
  * @returns The newly created #ICalProperty
4330
4358
  */
4331
- static new_comment(v: string | null): Property
4359
+ static new_comment(v: string): Property
4332
4360
  /**
4333
4361
  * Creates a new #ICalProperty.
4334
4362
  * @constructor
@@ -4342,14 +4370,14 @@ export class Property extends Object {
4342
4370
  * @param v The components
4343
4371
  * @returns The newly created #ICalProperty
4344
4372
  */
4345
- static new_components(v: string | null): Property
4373
+ static new_components(v: string): Property
4346
4374
  /**
4347
4375
  * Creates a new #ICalProperty.
4348
4376
  * @constructor
4349
4377
  * @param v The contact
4350
4378
  * @returns The newly created #ICalProperty
4351
4379
  */
4352
- static new_contact(v: string | null): Property
4380
+ static new_contact(v: string): Property
4353
4381
  /**
4354
4382
  * Creates a new #ICalProperty.
4355
4383
  * @constructor
@@ -4363,7 +4391,7 @@ export class Property extends Object {
4363
4391
  * @param v The csid
4364
4392
  * @returns The newly created #ICalProperty
4365
4393
  */
4366
- static new_csid(v: string | null): Property
4394
+ static new_csid(v: string): Property
4367
4395
  /**
4368
4396
  * Creates a new #ICalProperty.
4369
4397
  * @constructor
@@ -4384,49 +4412,49 @@ export class Property extends Object {
4384
4412
  * @param v The decreed
4385
4413
  * @returns The newly created #ICalProperty
4386
4414
  */
4387
- static new_decreed(v: string | null): Property
4415
+ static new_decreed(v: string): Property
4388
4416
  /**
4389
4417
  * Creates a new #ICalProperty.
4390
4418
  * @constructor
4391
4419
  * @param v The defaultcharset
4392
4420
  * @returns The newly created #ICalProperty
4393
4421
  */
4394
- static new_defaultcharset(v: string | null): Property
4422
+ static new_defaultcharset(v: string): Property
4395
4423
  /**
4396
4424
  * Creates a new #ICalProperty.
4397
4425
  * @constructor
4398
4426
  * @param v The defaultlocale
4399
4427
  * @returns The newly created #ICalProperty
4400
4428
  */
4401
- static new_defaultlocale(v: string | null): Property
4429
+ static new_defaultlocale(v: string): Property
4402
4430
  /**
4403
4431
  * Creates a new #ICalProperty.
4404
4432
  * @constructor
4405
4433
  * @param v The defaulttzid
4406
4434
  * @returns The newly created #ICalProperty
4407
4435
  */
4408
- static new_defaulttzid(v: string | null): Property
4436
+ static new_defaulttzid(v: string): Property
4409
4437
  /**
4410
4438
  * Creates a new #ICalProperty.
4411
4439
  * @constructor
4412
4440
  * @param v The defaultvcars
4413
4441
  * @returns The newly created #ICalProperty
4414
4442
  */
4415
- static new_defaultvcars(v: string | null): Property
4443
+ static new_defaultvcars(v: string): Property
4416
4444
  /**
4417
4445
  * Creates a new #ICalProperty.
4418
4446
  * @constructor
4419
4447
  * @param v The deny
4420
4448
  * @returns The newly created #ICalProperty
4421
4449
  */
4422
- static new_deny(v: string | null): Property
4450
+ static new_deny(v: string): Property
4423
4451
  /**
4424
4452
  * Creates a new #ICalProperty.
4425
4453
  * @constructor
4426
4454
  * @param v The description
4427
4455
  * @returns The newly created #ICalProperty
4428
4456
  */
4429
- static new_description(v: string | null): Property
4457
+ static new_description(v: string): Property
4430
4458
  /**
4431
4459
  * Creates a new #ICalProperty.
4432
4460
  * @constructor
@@ -4503,7 +4531,7 @@ export class Property extends Object {
4503
4531
  * @param str The string used to construct a #ICalProperty
4504
4532
  * @returns The newly created #ICalProperty from @str.
4505
4533
  */
4506
- static new_from_string(str: string | null): Property
4534
+ static new_from_string(str: string): Property
4507
4535
  /**
4508
4536
  * Creates a new #ICalProperty.
4509
4537
  * @constructor
@@ -4517,14 +4545,14 @@ export class Property extends Object {
4517
4545
  * @param v The grant
4518
4546
  * @returns The newly created #ICalProperty
4519
4547
  */
4520
- static new_grant(v: string | null): Property
4548
+ static new_grant(v: string): Property
4521
4549
  /**
4522
4550
  * Creates a new #ICalProperty.
4523
4551
  * @constructor
4524
4552
  * @param v The itipversion
4525
4553
  * @returns The newly created #ICalProperty
4526
4554
  */
4527
- static new_itipversion(v: string | null): Property
4555
+ static new_itipversion(v: string): Property
4528
4556
  /**
4529
4557
  * Creates a new #ICalProperty.
4530
4558
  * @constructor
@@ -4538,7 +4566,7 @@ export class Property extends Object {
4538
4566
  * @param v The location
4539
4567
  * @returns The newly created #ICalProperty
4540
4568
  */
4541
- static new_location(v: string | null): Property
4569
+ static new_location(v: string): Property
4542
4570
  /**
4543
4571
  * Creates a new #ICalProperty.
4544
4572
  * @constructor
@@ -4587,28 +4615,28 @@ export class Property extends Object {
4587
4615
  * @param v The multipart
4588
4616
  * @returns The newly created #ICalProperty
4589
4617
  */
4590
- static new_multipart(v: string | null): Property
4618
+ static new_multipart(v: string): Property
4591
4619
  /**
4592
4620
  * Creates a new #ICalProperty.
4593
4621
  * @constructor
4594
4622
  * @param v The name
4595
4623
  * @returns The newly created #ICalProperty
4596
4624
  */
4597
- static new_name(v: string | null): Property
4625
+ static new_name(v: string): Property
4598
4626
  /**
4599
4627
  * Creates a new #ICalProperty.
4600
4628
  * @constructor
4601
4629
  * @param v The organizer
4602
4630
  * @returns The newly created #ICalProperty
4603
4631
  */
4604
- static new_organizer(v: string | null): Property
4632
+ static new_organizer(v: string): Property
4605
4633
  /**
4606
4634
  * Creates a new #ICalProperty.
4607
4635
  * @constructor
4608
4636
  * @param v The owner
4609
4637
  * @returns The newly created #ICalProperty
4610
4638
  */
4611
- static new_owner(v: string | null): Property
4639
+ static new_owner(v: string): Property
4612
4640
  /**
4613
4641
  * Creates a new #ICalProperty.
4614
4642
  * @constructor
@@ -4622,7 +4650,7 @@ export class Property extends Object {
4622
4650
  * @param v The permission
4623
4651
  * @returns The newly created #ICalProperty
4624
4652
  */
4625
- static new_permission(v: string | null): Property
4653
+ static new_permission(v: string): Property
4626
4654
  /**
4627
4655
  * Creates a new #ICalProperty.
4628
4656
  * @constructor
@@ -4650,7 +4678,7 @@ export class Property extends Object {
4650
4678
  * @param v The pollproperties
4651
4679
  * @returns The newly created #ICalProperty
4652
4680
  */
4653
- static new_pollproperties(v: string | null): Property
4681
+ static new_pollproperties(v: string): Property
4654
4682
  /**
4655
4683
  * Creates a new #ICalProperty.
4656
4684
  * @constructor
@@ -4671,21 +4699,21 @@ export class Property extends Object {
4671
4699
  * @param v The prodid
4672
4700
  * @returns The newly created #ICalProperty
4673
4701
  */
4674
- static new_prodid(v: string | null): Property
4702
+ static new_prodid(v: string): Property
4675
4703
  /**
4676
4704
  * Creates a new #ICalProperty.
4677
4705
  * @constructor
4678
4706
  * @param v The query
4679
4707
  * @returns The newly created #ICalProperty
4680
4708
  */
4681
- static new_query(v: string | null): Property
4709
+ static new_query(v: string): Property
4682
4710
  /**
4683
4711
  * Creates a new #ICalProperty.
4684
4712
  * @constructor
4685
4713
  * @param v The queryid
4686
4714
  * @returns The newly created #ICalProperty
4687
4715
  */
4688
- static new_queryid(v: string | null): Property
4716
+ static new_queryid(v: string): Property
4689
4717
  /**
4690
4718
  * Creates a new #ICalProperty.
4691
4719
  * @constructor
@@ -4699,7 +4727,7 @@ export class Property extends Object {
4699
4727
  * @param v The queryname
4700
4728
  * @returns The newly created #ICalProperty
4701
4729
  */
4702
- static new_queryname(v: string | null): Property
4730
+ static new_queryname(v: string): Property
4703
4731
  /**
4704
4732
  * Creates a new #ICalProperty.
4705
4733
  * @constructor
@@ -4713,21 +4741,21 @@ export class Property extends Object {
4713
4741
  * @param v The recuraccepted
4714
4742
  * @returns The newly created #ICalProperty
4715
4743
  */
4716
- static new_recuraccepted(v: string | null): Property
4744
+ static new_recuraccepted(v: string): Property
4717
4745
  /**
4718
4746
  * Creates a new #ICalProperty.
4719
4747
  * @constructor
4720
4748
  * @param v The recurexpand
4721
4749
  * @returns The newly created #ICalProperty
4722
4750
  */
4723
- static new_recurexpand(v: string | null): Property
4751
+ static new_recurexpand(v: string): Property
4724
4752
  /**
4725
4753
  * Creates a new #ICalProperty.
4726
4754
  * @constructor
4727
4755
  * @param v The recurlimit
4728
4756
  * @returns The newly created #ICalProperty
4729
4757
  */
4730
- static new_recurlimit(v: string | null): Property
4758
+ static new_recurlimit(v: string): Property
4731
4759
  /**
4732
4760
  * Creates a new #ICalProperty.
4733
4761
  * @constructor
@@ -4741,14 +4769,14 @@ export class Property extends Object {
4741
4769
  * @param v The relatedto
4742
4770
  * @returns The newly created #ICalProperty
4743
4771
  */
4744
- static new_relatedto(v: string | null): Property
4772
+ static new_relatedto(v: string): Property
4745
4773
  /**
4746
4774
  * Creates a new #ICalProperty.
4747
4775
  * @constructor
4748
4776
  * @param v The relcalid
4749
4777
  * @returns The newly created #ICalProperty
4750
4778
  */
4751
- static new_relcalid(v: string | null): Property
4779
+ static new_relcalid(v: string): Property
4752
4780
  /**
4753
4781
  * Creates a new #ICalProperty.
4754
4782
  * @constructor
@@ -4762,7 +4790,7 @@ export class Property extends Object {
4762
4790
  * @param v The replyurl
4763
4791
  * @returns The newly created #ICalProperty
4764
4792
  */
4765
- static new_replyurl(v: string | null): Property
4793
+ static new_replyurl(v: string): Property
4766
4794
  /**
4767
4795
  * Creates a new #ICalProperty.
4768
4796
  * @constructor
@@ -4776,7 +4804,7 @@ export class Property extends Object {
4776
4804
  * @param v The resources
4777
4805
  * @returns The newly created #ICalProperty
4778
4806
  */
4779
- static new_resources(v: string | null): Property
4807
+ static new_resources(v: string): Property
4780
4808
  /**
4781
4809
  * Creates a new #ICalProperty.
4782
4810
  * @constructor
@@ -4790,7 +4818,7 @@ export class Property extends Object {
4790
4818
  * @param v The restriction
4791
4819
  * @returns The newly created #ICalProperty
4792
4820
  */
4793
- static new_restriction(v: string | null): Property
4821
+ static new_restriction(v: string): Property
4794
4822
  /**
4795
4823
  * Creates a new #ICalProperty.
4796
4824
  * @constructor
@@ -4804,7 +4832,7 @@ export class Property extends Object {
4804
4832
  * @param v The scope
4805
4833
  * @returns The newly created #ICalProperty
4806
4834
  */
4807
- static new_scope(v: string | null): Property
4835
+ static new_scope(v: string): Property
4808
4836
  /**
4809
4837
  * Creates a new #ICalProperty.
4810
4838
  * @constructor
@@ -4825,21 +4853,21 @@ export class Property extends Object {
4825
4853
  * @param v The storesexpanded
4826
4854
  * @returns The newly created #ICalProperty
4827
4855
  */
4828
- static new_storesexpanded(v: string | null): Property
4856
+ static new_storesexpanded(v: string): Property
4829
4857
  /**
4830
4858
  * Creates a new #ICalProperty.
4831
4859
  * @constructor
4832
4860
  * @param v The summary
4833
4861
  * @returns The newly created #ICalProperty
4834
4862
  */
4835
- static new_summary(v: string | null): Property
4863
+ static new_summary(v: string): Property
4836
4864
  /**
4837
4865
  * Creates a new #ICalProperty.
4838
4866
  * @constructor
4839
4867
  * @param v The target
4840
4868
  * @returns The newly created #ICalProperty
4841
4869
  */
4842
- static new_target(v: string | null): Property
4870
+ static new_target(v: string): Property
4843
4871
  /**
4844
4872
  * Creates a new #ICalProperty.
4845
4873
  * @constructor
@@ -4867,21 +4895,21 @@ export class Property extends Object {
4867
4895
  * @param v The tzid
4868
4896
  * @returns The newly created #ICalProperty
4869
4897
  */
4870
- static new_tzid(v: string | null): Property
4898
+ static new_tzid(v: string): Property
4871
4899
  /**
4872
4900
  * Creates a new #ICalProperty.
4873
4901
  * @constructor
4874
4902
  * @param v The tzidaliasof
4875
4903
  * @returns The newly created #ICalProperty
4876
4904
  */
4877
- static new_tzidaliasof(v: string | null): Property
4905
+ static new_tzidaliasof(v: string): Property
4878
4906
  /**
4879
4907
  * Creates a new #ICalProperty.
4880
4908
  * @constructor
4881
4909
  * @param v The tzname
4882
4910
  * @returns The newly created #ICalProperty
4883
4911
  */
4884
- static new_tzname(v: string | null): Property
4912
+ static new_tzname(v: string): Property
4885
4913
  /**
4886
4914
  * Creates a new #ICalProperty.
4887
4915
  * @constructor
@@ -4909,42 +4937,42 @@ export class Property extends Object {
4909
4937
  * @param v The tzurl
4910
4938
  * @returns The newly created #ICalProperty
4911
4939
  */
4912
- static new_tzurl(v: string | null): Property
4940
+ static new_tzurl(v: string): Property
4913
4941
  /**
4914
4942
  * Creates a new #ICalProperty.
4915
4943
  * @constructor
4916
4944
  * @param v The uid
4917
4945
  * @returns The newly created #ICalProperty
4918
4946
  */
4919
- static new_uid(v: string | null): Property
4947
+ static new_uid(v: string): Property
4920
4948
  /**
4921
4949
  * Creates a new #ICalProperty.
4922
4950
  * @constructor
4923
4951
  * @param v The url
4924
4952
  * @returns The newly created #ICalProperty
4925
4953
  */
4926
- static new_url(v: string | null): Property
4954
+ static new_url(v: string): Property
4927
4955
  /**
4928
4956
  * Creates a new #ICalProperty.
4929
4957
  * @constructor
4930
4958
  * @param v The version
4931
4959
  * @returns The newly created #ICalProperty
4932
4960
  */
4933
- static new_version(v: string | null): Property
4961
+ static new_version(v: string): Property
4934
4962
  /**
4935
4963
  * Creates a new #ICalProperty.
4936
4964
  * @constructor
4937
4965
  * @param v The voter
4938
4966
  * @returns The newly created #ICalProperty
4939
4967
  */
4940
- static new_voter(v: string | null): Property
4968
+ static new_voter(v: string): Property
4941
4969
  /**
4942
4970
  * Creates a new #ICalProperty.
4943
4971
  * @constructor
4944
4972
  * @param v The x
4945
4973
  * @returns The newly created #ICalProperty
4946
4974
  */
4947
- static new_x(v: string | null): Property
4975
+ static new_x(v: string): Property
4948
4976
  /**
4949
4977
  * Creates a new #ICalProperty.
4950
4978
  * @constructor
@@ -4958,56 +4986,56 @@ export class Property extends Object {
4958
4986
  * @param v The xlicclustercount
4959
4987
  * @returns The newly created #ICalProperty
4960
4988
  */
4961
- static new_xlicclustercount(v: string | null): Property
4989
+ static new_xlicclustercount(v: string): Property
4962
4990
  /**
4963
4991
  * Creates a new #ICalProperty.
4964
4992
  * @constructor
4965
4993
  * @param v The xlicerror
4966
4994
  * @returns The newly created #ICalProperty
4967
4995
  */
4968
- static new_xlicerror(v: string | null): Property
4996
+ static new_xlicerror(v: string): Property
4969
4997
  /**
4970
4998
  * Creates a new #ICalProperty.
4971
4999
  * @constructor
4972
5000
  * @param v The xlicmimecharset
4973
5001
  * @returns The newly created #ICalProperty
4974
5002
  */
4975
- static new_xlicmimecharset(v: string | null): Property
5003
+ static new_xlicmimecharset(v: string): Property
4976
5004
  /**
4977
5005
  * Creates a new #ICalProperty.
4978
5006
  * @constructor
4979
5007
  * @param v The xlicmimecid
4980
5008
  * @returns The newly created #ICalProperty
4981
5009
  */
4982
- static new_xlicmimecid(v: string | null): Property
5010
+ static new_xlicmimecid(v: string): Property
4983
5011
  /**
4984
5012
  * Creates a new #ICalProperty.
4985
5013
  * @constructor
4986
5014
  * @param v The xlicmimecontenttype
4987
5015
  * @returns The newly created #ICalProperty
4988
5016
  */
4989
- static new_xlicmimecontenttype(v: string | null): Property
5017
+ static new_xlicmimecontenttype(v: string): Property
4990
5018
  /**
4991
5019
  * Creates a new #ICalProperty.
4992
5020
  * @constructor
4993
5021
  * @param v The xlicmimeencoding
4994
5022
  * @returns The newly created #ICalProperty
4995
5023
  */
4996
- static new_xlicmimeencoding(v: string | null): Property
5024
+ static new_xlicmimeencoding(v: string): Property
4997
5025
  /**
4998
5026
  * Creates a new #ICalProperty.
4999
5027
  * @constructor
5000
5028
  * @param v The xlicmimefilename
5001
5029
  * @returns The newly created #ICalProperty
5002
5030
  */
5003
- static new_xlicmimefilename(v: string | null): Property
5031
+ static new_xlicmimefilename(v: string): Property
5004
5032
  /**
5005
5033
  * Creates a new #ICalProperty.
5006
5034
  * @constructor
5007
5035
  * @param v The xlicmimeoptinfo
5008
5036
  * @returns The newly created #ICalProperty
5009
5037
  */
5010
- static new_xlicmimeoptinfo(v: string | null): Property
5038
+ static new_xlicmimeoptinfo(v: string): Property
5011
5039
  _init(config?: Property.ConstructorProperties): void
5012
5040
  /**
5013
5041
  * Converts the enum to string.
@@ -5021,13 +5049,13 @@ export class Property extends Object {
5021
5049
  * @param str A string
5022
5050
  * @returns The enum.
5023
5051
  */
5024
- static kind_and_string_to_enum(kind: number, str: string | null): number
5052
+ static kind_and_string_to_enum(kind: number, str: string): number
5025
5053
  /**
5026
5054
  * Converts the string to #ICalPropertyKind.
5027
5055
  * @param string A string representing #ICalPropertyKind
5028
5056
  * @returns The #ICalPropertyKind.
5029
5057
  */
5030
- static kind_from_string(string: string | null): PropertyKind
5058
+ static kind_from_string(string: string): PropertyKind
5031
5059
  /**
5032
5060
  * Checks whether the enum belongs to the #ICalPropertyKind.
5033
5061
  * @param kind A #ICalPropertyKind
@@ -5046,7 +5074,7 @@ export class Property extends Object {
5046
5074
  * @param kind A #ICalPropertyKind
5047
5075
  * @returns The string representation of @kind.
5048
5076
  */
5049
- static kind_to_string(kind: PropertyKind): string | null
5077
+ static kind_to_string(kind: PropertyKind): string
5050
5078
  /**
5051
5079
  * Converts the #ICalPropertyKind to #ICalValueKind.
5052
5080
  * @param kind A #ICalPropertyKind
@@ -5058,13 +5086,13 @@ export class Property extends Object {
5058
5086
  * @param str A string
5059
5087
  * @returns The #ICalPropertyMethod.
5060
5088
  */
5061
- static method_from_string(str: string | null): PropertyMethod
5089
+ static method_from_string(str: string): PropertyMethod
5062
5090
  /**
5063
5091
  * Converts the #ICalPropertyMethod to string.
5064
5092
  * @param method The #ICalPropertyMethod
5065
5093
  * @returns The string representation of #ICalPropertyMethod.
5066
5094
  */
5067
- static method_to_string(method: PropertyMethod): string | null
5095
+ static method_to_string(method: PropertyMethod): string
5068
5096
  /**
5069
5097
  * Decides if this recurrence is acceptable. This function decides if a specific recurrence value is excluded
5070
5098
  * by EXRULE or EXDATE properties.
@@ -5079,13 +5107,13 @@ export class Property extends Object {
5079
5107
  * @param str A string
5080
5108
  * @returns The #ICalPropertyStatus.
5081
5109
  */
5082
- static status_from_string(str: string | null): PropertyStatus
5110
+ static status_from_string(str: string): PropertyStatus
5083
5111
  /**
5084
5112
  * Converts the #ICalPropertyStatus to string.
5085
5113
  * @param method The #ICalPropertyStatus
5086
5114
  * @returns The string representation of #ICalPropertyStatus.
5087
5115
  */
5088
- static status_to_string(method: PropertyStatus): string | null
5116
+ static status_to_string(method: PropertyStatus): string
5089
5117
  }
5090
5118
 
5091
5119
  export module RecurIterator {
@@ -5506,7 +5534,7 @@ export class Recurrence extends Object {
5506
5534
  * @param str The string representation of the #ICalRecurrence
5507
5535
  * @returns The #ICalRecurrence converted from @str.
5508
5536
  */
5509
- static new_from_string(str: string | null): Recurrence
5537
+ static new_from_string(str: string): Recurrence
5510
5538
  _init(config?: Recurrence.ConstructorProperties): void
5511
5539
  /**
5512
5540
  * Decodes a day to a weekday in a week.
@@ -5525,13 +5553,13 @@ export class Recurrence extends Object {
5525
5553
  * @param str The string representation of the frequency
5526
5554
  * @returns The enum representation of the frequency.
5527
5555
  */
5528
- static frequency_from_string(str: string | null): RecurrenceFrequency
5556
+ static frequency_from_string(str: string): RecurrenceFrequency
5529
5557
  /**
5530
5558
  * Converts a enum representation to a string representation for the frequency.
5531
5559
  * @param kind The frequency enum
5532
5560
  * @returns The string representation of frequency
5533
5561
  */
5534
- static frequency_to_string(kind: RecurrenceFrequency): string | null
5562
+ static frequency_to_string(kind: RecurrenceFrequency): string
5535
5563
  /**
5536
5564
  * Decodes a month and check whether it is a leap month.
5537
5565
  * @param month The month to be decoded
@@ -5554,25 +5582,25 @@ export class Recurrence extends Object {
5554
5582
  * @param str The string representation of the skip
5555
5583
  * @returns The enum representation of the skip.
5556
5584
  */
5557
- static skip_from_string(str: string | null): RecurrenceSkip
5585
+ static skip_from_string(str: string): RecurrenceSkip
5558
5586
  /**
5559
5587
  * Converts a enum representation to a string representation for the skip.
5560
5588
  * @param kind The frequency enum
5561
5589
  * @returns The string representation of skip
5562
5590
  */
5563
- static skip_to_string(kind: RecurrenceSkip): string | null
5591
+ static skip_to_string(kind: RecurrenceSkip): string
5564
5592
  /**
5565
5593
  * Converts a string representation to an enum representation for the weekday.
5566
5594
  * @param str The string representation of the weekday
5567
5595
  * @returns The enum representation of the weekday.
5568
5596
  */
5569
- static weekday_from_string(str: string | null): RecurrenceWeekday
5597
+ static weekday_from_string(str: string): RecurrenceWeekday
5570
5598
  /**
5571
5599
  * Converts a enum representation to a string representation for the weekday.
5572
5600
  * @param kind The frequency enum
5573
5601
  * @returns The string representation of weekday
5574
5602
  */
5575
- static weekday_to_string(kind: RecurrenceWeekday): string | null
5603
+ static weekday_to_string(kind: RecurrenceWeekday): string
5576
5604
  }
5577
5605
 
5578
5606
  export module Reqstat {
@@ -5597,12 +5625,12 @@ export interface Reqstat {
5597
5625
  * Gets the debug of #ICalReqstat.
5598
5626
  * @returns The debug of @reqstat.
5599
5627
  */
5600
- get_debug(): string | null
5628
+ get_debug(): string
5601
5629
  /**
5602
5630
  * Gets the desc of #ICalReqstat.
5603
5631
  * @returns The desc of @reqstat.
5604
5632
  */
5605
- get_desc(): string | null
5633
+ get_desc(): string
5606
5634
  /**
5607
5635
  * Sets the code of #ICalReqstat.
5608
5636
  * @param code The code of `reqstat`
@@ -5657,7 +5685,7 @@ export class Reqstat extends Object {
5657
5685
  * @param str A string
5658
5686
  * @returns The newly created #ICalReqstat.
5659
5687
  */
5660
- static new_from_string(str: string | null): Reqstat
5688
+ static new_from_string(str: string): Reqstat
5661
5689
  _init(config?: Reqstat.ConstructorProperties): void
5662
5690
  }
5663
5691
 
@@ -5988,7 +6016,7 @@ export class Time extends Object {
5988
6016
  * @param str The ISO format string
5989
6017
  * @returns The newly created #ICalTime
5990
6018
  */
5991
- static new_from_string(str: string | null): Time
6019
+ static new_from_string(str: string): Time
5992
6020
  /**
5993
6021
  * Converts seconds past UNIX epoch to a timetype, using timezones.
5994
6022
  * @constructor
@@ -6207,7 +6235,7 @@ export interface Timezone {
6207
6235
  * Gets the display name of the `zone`.
6208
6236
  * @returns The display name of @zone
6209
6237
  */
6210
- get_display_name(): string | null
6238
+ get_display_name(): string
6211
6239
  /**
6212
6240
  * Returns the latitude of a builtin timezone.
6213
6241
  * @returns The latitude of the #ICalTimezone
@@ -6388,7 +6416,7 @@ export class Timezone extends Object {
6388
6416
  * Gets the directory to look for the zonefiles.
6389
6417
  * @returns The path to look for the zonefiles
6390
6418
  */
6391
- static get_zone_directory(): string | null
6419
+ static get_zone_directory(): string
6392
6420
  /**
6393
6421
  * Frees memory dedicated to the zonefile directory.
6394
6422
  */
@@ -6404,12 +6432,12 @@ export class Timezone extends Object {
6404
6432
  * Do not change or de-allocate the string buffer after calling this.
6405
6433
  * @param new_prefix The #ICalTimezone to be set
6406
6434
  */
6407
- static set_tzid_prefix(new_prefix: string | null): void
6435
+ static set_tzid_prefix(new_prefix: string): void
6408
6436
  /**
6409
6437
  * Sets the directory to look for the zonefiles.
6410
6438
  * @param path The path to look for the zonefiles
6411
6439
  */
6412
- static set_zone_directory(path: string | null): void
6440
+ static set_zone_directory(path: string): void
6413
6441
  }
6414
6442
 
6415
6443
  export module Trigger {
@@ -6506,7 +6534,7 @@ export class Trigger extends Object {
6506
6534
  * @param str A string
6507
6535
  * @returns The newly created #ICalTrigger.
6508
6536
  */
6509
- static new_from_string(str: string | null): Trigger
6537
+ static new_from_string(str: string): Trigger
6510
6538
  _init(config?: Trigger.ConstructorProperties): void
6511
6539
  }
6512
6540
 
@@ -6752,7 +6780,7 @@ export interface Value {
6752
6780
  * Sets the binary in the #ICalValue.
6753
6781
  * @param v The binary value
6754
6782
  */
6755
- set_binary(v: string | null): void
6783
+ set_binary(v: string): void
6756
6784
  /**
6757
6785
  * Sets the boolean in the #ICalValue.
6758
6786
  * @param v The boolean value
@@ -6767,7 +6795,7 @@ export interface Value {
6767
6795
  * Sets the caladdress in the #ICalValue.
6768
6796
  * @param v The caladdress value
6769
6797
  */
6770
- set_caladdress(v: string | null): void
6798
+ set_caladdress(v: string): void
6771
6799
  /**
6772
6800
  * Sets the carlevel in the #ICalValue.
6773
6801
  * @param v The carlevel value
@@ -6852,7 +6880,7 @@ export interface Value {
6852
6880
  * Sets the query in the #ICalValue.
6853
6881
  * @param v The query value
6854
6882
  */
6855
- set_query(v: string | null): void
6883
+ set_query(v: string): void
6856
6884
  /**
6857
6885
  * Sets the querylevel in the #ICalValue.
6858
6886
  * @param v The querylevel value
@@ -6877,7 +6905,7 @@ export interface Value {
6877
6905
  * Sets the string in the #ICalValue.
6878
6906
  * @param v The string value
6879
6907
  */
6880
- set_string(v: string | null): void
6908
+ set_string(v: string): void
6881
6909
  /**
6882
6910
  * Sets the taskmode in the #ICalValue.
6883
6911
  * @param v The taskmode value
@@ -6887,7 +6915,7 @@ export interface Value {
6887
6915
  * Sets the text in the #ICalValue.
6888
6916
  * @param v The text value
6889
6917
  */
6890
- set_text(v: string | null): void
6918
+ set_text(v: string): void
6891
6919
  /**
6892
6920
  * Sets the transp in the #ICalValue.
6893
6921
  * @param v The transp value
@@ -6902,7 +6930,7 @@ export interface Value {
6902
6930
  * Sets the uri in the #ICalValue.
6903
6931
  * @param v The uri value
6904
6932
  */
6905
- set_uri(v: string | null): void
6933
+ set_uri(v: string): void
6906
6934
  /**
6907
6935
  * Sets the utcoffset in the #ICalValue.
6908
6936
  * @param v The utcoffset value
@@ -6912,7 +6940,7 @@ export interface Value {
6912
6940
  * Sets the x in the #ICalValue.
6913
6941
  * @param v The x value
6914
6942
  */
6915
- set_x(v: string | null): void
6943
+ set_x(v: string): void
6916
6944
  /**
6917
6945
  * Sets the xlicclass in the #ICalValue.
6918
6946
  * @param v The xlicclass value
@@ -6990,7 +7018,7 @@ export class Value extends Object {
6990
7018
  * @param v The binary value
6991
7019
  * @returns The newly created #ICalValue.
6992
7020
  */
6993
- static new_binary(v: string | null): Value
7021
+ static new_binary(v: string): Value
6994
7022
  /**
6995
7023
  * Creates a new #ICalValue with the type boolean.
6996
7024
  * @constructor
@@ -7011,7 +7039,7 @@ export class Value extends Object {
7011
7039
  * @param v The caladdress value
7012
7040
  * @returns The newly created #ICalValue.
7013
7041
  */
7014
- static new_caladdress(v: string | null): Value
7042
+ static new_caladdress(v: string): Value
7015
7043
  /**
7016
7044
  * Creates a new #ICalValue with the type carlevel.
7017
7045
  * @constructor
@@ -7082,7 +7110,7 @@ export class Value extends Object {
7082
7110
  * @param str A string
7083
7111
  * @returns The newly created #ICalValue based on the @kind and @str.
7084
7112
  */
7085
- static new_from_string(kind: ValueKind, str: string | null): Value
7113
+ static new_from_string(kind: ValueKind, str: string): Value
7086
7114
  /**
7087
7115
  * Creates a new #ICalValue with the type geo.
7088
7116
  * @constructor
@@ -7131,7 +7159,7 @@ export class Value extends Object {
7131
7159
  * @param v The query value
7132
7160
  * @returns The newly created #ICalValue.
7133
7161
  */
7134
- static new_query(v: string | null): Value
7162
+ static new_query(v: string): Value
7135
7163
  /**
7136
7164
  * Creates a new #ICalValue with the type querylevel.
7137
7165
  * @constructor
@@ -7166,7 +7194,7 @@ export class Value extends Object {
7166
7194
  * @param v The string value
7167
7195
  * @returns The newly created #ICalValue.
7168
7196
  */
7169
- static new_string(v: string | null): Value
7197
+ static new_string(v: string): Value
7170
7198
  /**
7171
7199
  * Creates a new #ICalValue with the type taskmode.
7172
7200
  * @constructor
@@ -7180,7 +7208,7 @@ export class Value extends Object {
7180
7208
  * @param v The text value
7181
7209
  * @returns The newly created #ICalValue.
7182
7210
  */
7183
- static new_text(v: string | null): Value
7211
+ static new_text(v: string): Value
7184
7212
  /**
7185
7213
  * Creates a new #ICalValue with the type transp.
7186
7214
  * @constructor
@@ -7201,7 +7229,7 @@ export class Value extends Object {
7201
7229
  * @param v The uri value
7202
7230
  * @returns The newly created #ICalValue.
7203
7231
  */
7204
- static new_uri(v: string | null): Value
7232
+ static new_uri(v: string): Value
7205
7233
  /**
7206
7234
  * Creates a new #ICalValue with the type utcoffset.
7207
7235
  * @constructor
@@ -7215,7 +7243,7 @@ export class Value extends Object {
7215
7243
  * @param v The x value
7216
7244
  * @returns The newly created #ICalValue.
7217
7245
  */
7218
- static new_x(v: string | null): Value
7246
+ static new_x(v: string): Value
7219
7247
  /**
7220
7248
  * Creates a new #ICalValue with the type xlicclass.
7221
7249
  * @constructor
@@ -7229,19 +7257,19 @@ export class Value extends Object {
7229
7257
  * @param szText A string
7230
7258
  * @returns The decoded string. NULL if fail.
7231
7259
  */
7232
- static decode_ical_string(szText: string | null): string | null
7260
+ static decode_ical_string(szText: string): string | null
7233
7261
  /**
7234
7262
  * Encodes a character string in ical format, escape certain characters, etc.
7235
7263
  * @param szText A string
7236
7264
  * @returns The encoded string. NULL if fail.
7237
7265
  */
7238
- static encode_ical_string(szText: string | null): string | null
7266
+ static encode_ical_string(szText: string): string | null
7239
7267
  /**
7240
7268
  * Converts a string to #ICalValueKind.
7241
7269
  * @param str A string
7242
7270
  * @returns A #ICalValueKind.
7243
7271
  */
7244
- static kind_from_string(str: string | null): ValueKind
7272
+ static kind_from_string(str: string): ValueKind
7245
7273
  /**
7246
7274
  * Checks whether the #ICalValueKind is valid.
7247
7275
  * @param kind The #ICalValueKind to be checked
@@ -7259,7 +7287,7 @@ export class Value extends Object {
7259
7287
  * @param kind A #ICalValueKind
7260
7288
  * @returns The string representation of #ICalValueKind.
7261
7289
  */
7262
- static kind_to_string(kind: ValueKind): string | null
7290
+ static kind_to_string(kind: ValueKind): string
7263
7291
  }
7264
7292
 
7265
7293
  export interface ArrayClass {