Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html « -jtx-i-cal-object « -jtx-contract « at.techbee.jtx « ical4android - github.com/bitfireAT/ical4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: caadf918b5094057fcff63c2baf1159af5524b72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
    <title>JtxICalObject</title>
    <link href="../../../../images/logo-icon.svg" rel="icon" type="image/svg">
    <script>var pathToRoot = "../../../../";</script>
    <script>const storage = localStorage.getItem("dokka-dark-mode")
    if (storage == null) {
        const osDarkSchemePreferred = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
        if (osDarkSchemePreferred === true) {
            document.getElementsByTagName("html")[0].classList.add("theme-dark")
        }
    } else {
        const savedDarkMode = JSON.parse(storage)
        if(savedDarkMode === true) {
            document.getElementsByTagName("html")[0].classList.add("theme-dark")
        }
    }
    </script>
<script type="text/javascript" src="../../../../scripts/sourceset_dependencies.js" async="async"></script>
<link href="../../../../styles/style.css" rel="Stylesheet">
<link href="../../../../styles/jetbrains-mono.css" rel="Stylesheet">
<link href="../../../../styles/main.css" rel="Stylesheet">
<link href="../../../../styles/prism.css" rel="Stylesheet">
<link href="../../../../styles/logo-styles.css" rel="Stylesheet">
<script type="text/javascript" src="../../../../scripts/clipboard.js" async="async"></script>
<script type="text/javascript" src="../../../../scripts/navigation-loader.js" async="async"></script>
<script type="text/javascript" src="../../../../scripts/platform-content-handler.js" async="async"></script>
<script type="text/javascript" src="../../../../scripts/main.js" defer="defer"></script>
<script type="text/javascript" src="../../../../scripts/prism.js" async="async"></script>
<script type="text/javascript" src="../../../../scripts/symbol-parameters-wrapper_deferred.js" defer="defer"></script>
</head>
<body>
<div class="navigation-wrapper" id="navigation-wrapper">
    <div id="leftToggler"><span class="icon-toggler"></span></div>
    <div class="library-name">
            <a href="../../../../index.html">
                    <span>ical4android</span>
            </a>
    </div>
    <div>
    </div>
    <div class="pull-right d-flex">
        <button id="theme-toggle-button"><span id="theme-toggle"></span></button>
        <div id="searchBar"></div>
    </div>
</div>
<div id="container">
    <div id="leftColumn">
        <div id="sideMenu"></div>
    </div>
    <div id="main">
<div class="main-content" id="content" pageIds="ical4android::at.techbee.jtx/JtxContract.JtxICalObject///PointingToDeclaration//579055962">
  <div class="breadcrumbs"><a href="../../../../index.html">ical4android</a><span class="delimiter">/</span><a href="../../index.html">at.techbee.jtx</a><span class="delimiter">/</span><a href="../index.html">JtxContract</a><span class="delimiter">/</span><span class="current">JtxICalObject</span></div>
  <div class="cover ">
    <h1 class="cover"><span>Jtx</span><wbr></wbr><span>ICal</span><wbr></wbr><span><span>Object</span></span></h1>
    <div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><div class="symbol monospace"><span class="token keyword">object </span><a href="index.html">JtxICalObject</a></div></div></div>
  </div>
  <div class="tabbedcontent">
    <div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Types">Types</button><button class="section-tab" data-togglable="Properties">Properties</button></div>
    <div class="tabs-section-body">
      <h2 class="">Types</h2>
      <div class="table" data-togglable="Types"><a data-name="-173514205%2FClasslikes%2F579055962" anchor-label="Classification" id="-173514205%2FClasslikes%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-classification/index.html"><span><span>Classification</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-173514205%2FClasslikes%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><div class="symbol monospace"><span class="token keyword">enum </span><a href="-classification/index.html">Classification</a> : <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="-classification/index.html">JtxContract.JtxICalObject.Classification</a><span class="token operator">&gt; </span></div><div class="brief "><p class="paragraph">This enum class defines the possible values for the attribute classification of an <a href="index.html">JtxICalObject</a> Use its name when the string representation is required, e.g. Classification.PUBLIC.name.</p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-2082644036%2FClasslikes%2F579055962" anchor-label="Component" id="-2082644036%2FClasslikes%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-component/index.html"><span><span>Component</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2082644036%2FClasslikes%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><div class="symbol monospace"><span class="token keyword">enum </span><a href="-component/index.html">Component</a> : <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="-component/index.html">JtxContract.JtxICalObject.Component</a><span class="token operator">&gt; </span></div><div class="brief "><p class="paragraph">This enum class defines the possible values for the attribute component of an <a href="index.html">JtxICalObject</a> Use its name when the string representation is required, e.g. Component.VJOURNAL.name.</p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-1300542883%2FClasslikes%2F579055962" anchor-label="Module" id="-1300542883%2FClasslikes%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-module/index.html"><span><span>Module</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1300542883%2FClasslikes%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><div class="symbol monospace"><span class="token keyword">enum </span><a href="-module/index.html">Module</a> : <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="-module/index.html">JtxContract.JtxICalObject.Module</a><span class="token operator">&gt; </span></div><div class="brief "><p class="paragraph">This enum class defines the possible values for the attribute module of an <a href="index.html">JtxICalObject</a> Use its name when the string representation is required, e.g. Module.JOURNAL.name.</p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="1945385684%2FClasslikes%2F579055962" anchor-label="StatusJournal" id="1945385684%2FClasslikes%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-status-journal/index.html"><span>Status</span><wbr></wbr><span><span>Journal</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1945385684%2FClasslikes%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><div class="symbol monospace"><span class="token keyword">enum </span><a href="-status-journal/index.html">StatusJournal</a> : <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="-status-journal/index.html">JtxContract.JtxICalObject.StatusJournal</a><span class="token operator">&gt; </span></div><div class="brief "><p class="paragraph">This enum class defines the possible values for the attribute status of an <a href="index.html">JtxICalObject</a> for Journals/Notes Use its name when the string representation is required, e.g. StatusJournal.DRAFT.name.</p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-475503887%2FClasslikes%2F579055962" anchor-label="StatusTodo" id="-475503887%2FClasslikes%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-status-todo/index.html"><span>Status</span><wbr></wbr><span><span>Todo</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-475503887%2FClasslikes%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><div class="symbol monospace"><span class="token keyword">enum </span><a href="-status-todo/index.html">StatusTodo</a> : <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html">Enum</a><span class="token operator">&lt;</span><span class="token keyword"></span><a href="-status-todo/index.html">JtxContract.JtxICalObject.StatusTodo</a><span class="token operator">&gt; </span></div><div class="brief "><p class="paragraph">This enum class defines the possible values for the attribute status of an <a href="index.html">JtxICalObject</a> for Todos Use its name when the string representation is required, e.g. StatusTodo.<code class="lang-kotlin">NEEDS-ACTION</code>.name.</p></div></div></div>
              </div>
            </div>
          </div>
        </div>
      </div>
      <h2 class="">Properties</h2>
      <div class="table" data-togglable="Properties"><a data-name="-1185536850%2FProperties%2F579055962" anchor-label="CLASSIFICATION" id="-1185536850%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-c-l-a-s-s-i-f-i-c-a-t-i-o-n.html"><span><span>CLASSIFICATION</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1185536850%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-1185536850%2FProperties%2F579055962" anchor-label="CLASSIFICATION" id="-1185536850%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-c-l-a-s-s-i-f-i-c-a-t-i-o-n.html">CLASSIFICATION</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-1185536850%2FProperties%2F579055962" anchor-label="CLASSIFICATION" id="-1185536850%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property defines the access classification for a calendar component. The possible values of a status are defined in the enum <a href="-classification/index.html">Classification</a>. Use e.g. Classification.PUBLIC.name to put a correct String value in this field. If no valid Classification is used, the value is taken and will be shown as-is. Also null-value is allowed. See [https://tools.ietf.org/html/rfc5545#section-3.8.1.11] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-303235613%2FProperties%2F579055962" anchor-label="COLOR" id="-303235613%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-c-o-l-o-r.html"><span><span>COLOR</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-303235613%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-303235613%2FProperties%2F579055962" anchor-label="COLOR" id="-303235613%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-c-o-l-o-r.html">COLOR</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-303235613%2FProperties%2F579055962" anchor-label="COLOR" id="-303235613%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property specifies a color used for displaying the calendar, event, todo, or journal data. See https://tools.ietf.org/html/rfc7986#section-5.9. The color is represented as Int-value as described in [https://developer.android.com/reference/android/graphics/Color#color-ints] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-2105075845%2FProperties%2F579055962" anchor-label="COMPLETED" id="-2105075845%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-c-o-m-p-l-e-t-e-d.html"><span><span>COMPLETED</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-2105075845%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-2105075845%2FProperties%2F579055962" anchor-label="COMPLETED" id="-2105075845%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-c-o-m-p-l-e-t-e-d.html">COMPLETED</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-2105075845%2FProperties%2F579055962" anchor-label="COMPLETED" id="-2105075845%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property defines the date and time that a to-do was actually completed. This value is stored as UNIX timestamp (milliseconds). The corresponding timezone is stored in <a href="-c-o-m-p-l-e-t-e-d_-t-i-m-e-z-o-n-e.html">COMPLETED_TIMEZONE</a>. See [https://tools.ietf.org/html/rfc5545#section-3.8.2.1] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-149041305%2FProperties%2F579055962" anchor-label="COMPLETED_TIMEZONE" id="-149041305%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-c-o-m-p-l-e-t-e-d_-t-i-m-e-z-o-n-e.html"><span><span>COMPLETED_TIMEZONE</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-149041305%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-149041305%2FProperties%2F579055962" anchor-label="COMPLETED_TIMEZONE" id="-149041305%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-c-o-m-p-l-e-t-e-d_-t-i-m-e-z-o-n-e.html">COMPLETED_TIMEZONE</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-149041305%2FProperties%2F579055962" anchor-label="COMPLETED_TIMEZONE" id="-149041305%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This column/property specifies the timezone of when a to-do was actually completed. The corresponding datetime is stored in <a href="-c-o-m-p-l-e-t-e-d.html">COMPLETED</a>. See <a href="-d-t-s-t-a-r-t_-t-i-m-e-z-o-n-e.html">DTSTART_TIMEZONE</a> for information about the timezone handling See [https://tools.ietf.org/html/rfc5545#section-3.8.2.1] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-41190135%2FProperties%2F579055962" anchor-label="COMPONENT" id="-41190135%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-c-o-m-p-o-n-e-n-t.html"><span><span>COMPONENT</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-41190135%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-41190135%2FProperties%2F579055962" anchor-label="COMPONENT" id="-41190135%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-c-o-m-p-o-n-e-n-t.html">COMPONENT</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-41190135%2FProperties%2F579055962" anchor-label="COMPONENT" id="-41190135%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">The column for the component based on the values provided in the enum <a href="-component/index.html">Component</a>. Use e.g. Component.VTODO.name for a correct String value in this field. If no Component is provided on Insert, an IllegalArgumentException is thrown Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-1416821370%2FProperties%2F579055962" anchor-label="CONTACT" id="-1416821370%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-c-o-n-t-a-c-t.html"><span><span>CONTACT</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1416821370%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-1416821370%2FProperties%2F579055962" anchor-label="CONTACT" id="-1416821370%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-c-o-n-t-a-c-t.html">CONTACT</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-1416821370%2FProperties%2F579055962" anchor-label="CONTACT" id="-1416821370%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property is used to represent contact information or alternately a reference to contact information associated with the calendar component. See [https://tools.ietf.org/html/rfc5545#section-3.8.4.2] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="1589896032%2FProperties%2F579055962" anchor-label="CONTENT_URI" id="1589896032%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-c-o-n-t-e-n-t_-u-r-i.html"><span><span>CONTENT_URI</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1589896032%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="1589896032%2FProperties%2F579055962" anchor-label="CONTENT_URI" id="1589896032%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">val </span><a href="-c-o-n-t-e-n-t_-u-r-i.html">CONTENT_URI</a><span class="token operator">: </span><a href="https://developer.android.com/reference/kotlin/android/net/Uri.html">Uri</a></div><div class="brief "><a data-name="1589896032%2FProperties%2F579055962" anchor-label="CONTENT_URI" id="1589896032%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">The content uri of the ICalObject table</p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="131587006%2FProperties%2F579055962" anchor-label="CREATED" id="131587006%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-c-r-e-a-t-e-d.html"><span><span>CREATED</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="131587006%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="131587006%2FProperties%2F579055962" anchor-label="CREATED" id="131587006%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-c-r-e-a-t-e-d.html">CREATED</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="131587006%2FProperties%2F579055962" anchor-label="CREATED" id="131587006%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property specifies the date and time that the calendar information was created by the calendar user agent in the calendar store and is stored as UNIX timestamp (milliseconds). See [https://tools.ietf.org/html/rfc5545#section-3.8.7.1] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="707670957%2FProperties%2F579055962" anchor-label="DELETED" id="707670957%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-d-e-l-e-t-e-d.html"><span><span>DELETED</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="707670957%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="707670957%2FProperties%2F579055962" anchor-label="DELETED" id="707670957%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-d-e-l-e-t-e-d.html">DELETED</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="707670957%2FProperties%2F579055962" anchor-label="DELETED" id="707670957%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This column defines if a collection that is supposed to be synchonized was locally marked as deleted. Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="1897652394%2FProperties%2F579055962" anchor-label="DESCRIPTION" id="1897652394%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-d-e-s-c-r-i-p-t-i-o-n.html"><span><span>DESCRIPTION</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1897652394%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="1897652394%2FProperties%2F579055962" anchor-label="DESCRIPTION" id="1897652394%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-d-e-s-c-r-i-p-t-i-o-n.html">DESCRIPTION</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="1897652394%2FProperties%2F579055962" anchor-label="DESCRIPTION" id="1897652394%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This column/property provides a more complete description of the calendar component than that provided by the &quot;SUMMARY&quot; property. See [https://tools.ietf.org/html/rfc5545#section-3.8.1.5] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-953740204%2FProperties%2F579055962" anchor-label="DIRTY" id="-953740204%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-d-i-r-t-y.html"><span><span>DIRTY</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-953740204%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-953740204%2FProperties%2F579055962" anchor-label="DIRTY" id="-953740204%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-d-i-r-t-y.html">DIRTY</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-953740204%2FProperties%2F579055962" anchor-label="DIRTY" id="-953740204%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This column defines if the local ICalObject was changed and that it is supposed to be synchronised. Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-734113797%2FProperties%2F579055962" anchor-label="DTEND" id="-734113797%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-d-t-e-n-d.html"><span><span>DTEND</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-734113797%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-734113797%2FProperties%2F579055962" anchor-label="DTEND" id="-734113797%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-d-t-e-n-d.html">DTEND</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-734113797%2FProperties%2F579055962" anchor-label="DTEND" id="-734113797%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This column/property specifies when the calendar component ends. This value is stored as UNIX timestamp (milliseconds). The corresponding timezone is stored in <a href="-d-t-e-n-d_-t-i-m-e-z-o-n-e.html">DTEND_TIMEZONE</a>. See [https://tools.ietf.org/html/rfc5545#section-3.8.2.4] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-658626841%2FProperties%2F579055962" anchor-label="DTEND_TIMEZONE" id="-658626841%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-d-t-e-n-d_-t-i-m-e-z-o-n-e.html"><span><span>DTEND_TIMEZONE</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-658626841%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-658626841%2FProperties%2F579055962" anchor-label="DTEND_TIMEZONE" id="-658626841%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-d-t-e-n-d_-t-i-m-e-z-o-n-e.html">DTEND_TIMEZONE</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-658626841%2FProperties%2F579055962" anchor-label="DTEND_TIMEZONE" id="-658626841%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This column/property specifies the timezone of when the calendar component ends. The corresponding datetime is stored in <a href="-d-t-e-n-d.html">DTEND</a>. See <a href="-d-t-s-t-a-r-t_-t-i-m-e-z-o-n-e.html">DTSTART_TIMEZONE</a> for information about the timezone handling See [https://tools.ietf.org/html/rfc5545#section-3.8.2.2] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-714218541%2FProperties%2F579055962" anchor-label="DTSTAMP" id="-714218541%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-d-t-s-t-a-m-p.html"><span><span>DTSTAMP</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-714218541%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-714218541%2FProperties%2F579055962" anchor-label="DTSTAMP" id="-714218541%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-d-t-s-t-a-m-p.html">DTSTAMP</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-714218541%2FProperties%2F579055962" anchor-label="DTSTAMP" id="-714218541%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  In the case of an iCalendar object that specifies a &quot;METHOD&quot; property, this property specifies the date and time that the instance of the iCalendar object was created.  In the case of an iCalendar object that doesn't specify a &quot;METHOD&quot; property, this property specifies the date and time that the information associated with the calendar component was last revised in the calendar store. It is saved as UNIX timestamp (milliseconds). See [https://tools.ietf.org/html/rfc5545#section-3.8.7.2] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-77036524%2FProperties%2F579055962" anchor-label="DTSTART" id="-77036524%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-d-t-s-t-a-r-t.html"><span><span>DTSTART</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-77036524%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-77036524%2FProperties%2F579055962" anchor-label="DTSTART" id="-77036524%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-d-t-s-t-a-r-t.html">DTSTART</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-77036524%2FProperties%2F579055962" anchor-label="DTSTART" id="-77036524%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This column/property specifies when the calendar component begins. This value is stored as UNIX timestamp (milliseconds). The corresponding timezone is stored in <a href="-d-t-s-t-a-r-t_-t-i-m-e-z-o-n-e.html">DTSTART_TIMEZONE</a>. See [https://tools.ietf.org/html/rfc5545#section-3.8.2.4] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-419791122%2FProperties%2F579055962" anchor-label="DTSTART_TIMEZONE" id="-419791122%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-d-t-s-t-a-r-t_-t-i-m-e-z-o-n-e.html"><span><span>DTSTART_TIMEZONE</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-419791122%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-419791122%2FProperties%2F579055962" anchor-label="DTSTART_TIMEZONE" id="-419791122%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-d-t-s-t-a-r-t_-t-i-m-e-z-o-n-e.html">DTSTART_TIMEZONE</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-419791122%2FProperties%2F579055962" anchor-label="DTSTART_TIMEZONE" id="-419791122%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This column/property specifies the timezone of when the calendar component begins. The corresponding datetime is stored in <a href="-d-t-s-t-a-r-t.html">DTSTART</a>. The value of a timezone can be:</p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-737677646%2FProperties%2F579055962" anchor-label="DUE" id="-737677646%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-d-u-e.html"><span><span>DUE</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-737677646%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-737677646%2FProperties%2F579055962" anchor-label="DUE" id="-737677646%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-d-u-e.html">DUE</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-737677646%2FProperties%2F579055962" anchor-label="DUE" id="-737677646%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property defines the date and time that a to-do is expected to be completed. This value is stored as UNIX timestamp (milliseconds). The corresponding timezone is stored in <a href="-d-u-e_-t-i-m-e-z-o-n-e.html">DUE_TIMEZONE</a>. See [https://tools.ietf.org/html/rfc5545#section-3.8.2.3] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="2137400848%2FProperties%2F579055962" anchor-label="DUE_TIMEZONE" id="2137400848%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-d-u-e_-t-i-m-e-z-o-n-e.html"><span><span>DUE_TIMEZONE</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="2137400848%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="2137400848%2FProperties%2F579055962" anchor-label="DUE_TIMEZONE" id="2137400848%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-d-u-e_-t-i-m-e-z-o-n-e.html">DUE_TIMEZONE</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="2137400848%2FProperties%2F579055962" anchor-label="DUE_TIMEZONE" id="2137400848%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This column/property specifies the timezone of when a to-do is expected to be completed. The corresponding datetime is stored in <a href="-d-u-e.html">DUE</a>. See <a href="-d-t-s-t-a-r-t_-t-i-m-e-z-o-n-e.html">DTSTART_TIMEZONE</a> for information about the timezone handling See [https://tools.ietf.org/html/rfc5545#section-3.8.2.2] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="1813003264%2FProperties%2F579055962" anchor-label="DURATION" id="1813003264%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-d-u-r-a-t-i-o-n.html"><span><span>DURATION</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1813003264%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="1813003264%2FProperties%2F579055962" anchor-label="DURATION" id="1813003264%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-d-u-r-a-t-i-o-n.html">DURATION</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="1813003264%2FProperties%2F579055962" anchor-label="DURATION" id="1813003264%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property specifies a positive duration of time. See <a href="-d-t-s-t-a-r-t_-t-i-m-e-z-o-n-e.html">DTSTART_TIMEZONE</a> for information about the timezone handling The string representation follows the notation as given in RFC-5545 for the value type duration: [https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.6] Exampe: &quot;P15DT5H0M20S&quot;. This field is currently not in use. If present, the user would see a notification that a duration cannot be processed and will be overwritten if the entry is changed. See [https://tools.ietf.org/html/rfc5545#section-3.8.2.5] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="204562207%2FProperties%2F579055962" anchor-label="ETAG" id="204562207%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-e-t-a-g.html"><span><span>ETAG</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="204562207%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="204562207%2FProperties%2F579055962" anchor-label="ETAG" id="204562207%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-e-t-a-g.html">ETAG</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="204562207%2FProperties%2F579055962" anchor-label="ETAG" id="204562207%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  eTag for SyncAdapter, only relevant for synched entries through sync-adapter Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="77145363%2FProperties%2F579055962" anchor-label="EXDATE" id="77145363%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-e-x-d-a-t-e.html"><span><span>EXDATE</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="77145363%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="77145363%2FProperties%2F579055962" anchor-label="EXDATE" id="77145363%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-e-x-d-a-t-e.html">EXDATE</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="77145363%2FProperties%2F579055962" anchor-label="EXDATE" id="77145363%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property defines the list of DATE-TIME exceptions for recurring events, to-dos, journal entries, or time zone definitions. Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>, contains a list of comma-separated date values as UNIX timestamps (milliseconds) e.g. &quot;1636751475000,1636837875000&quot;. Invalid values that cannot be transformed to <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a> are ignored.</p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-1995632915%2FProperties%2F579055962" anchor-label="FILENAME" id="-1995632915%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-f-i-l-e-n-a-m-e.html"><span><span>FILENAME</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1995632915%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-1995632915%2FProperties%2F579055962" anchor-label="FILENAME" id="-1995632915%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-f-i-l-e-n-a-m-e.html">FILENAME</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-1995632915%2FProperties%2F579055962" anchor-label="FILENAME" id="-1995632915%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  The remote file name of the synchronized entry (*.ics), only relevant for synchronized entries through the sync-adapter Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="1381551935%2FProperties%2F579055962" anchor-label="FLAGS" id="1381551935%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-f-l-a-g-s.html"><span><span>FLAGS</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1381551935%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="1381551935%2FProperties%2F579055962" anchor-label="FLAGS" id="1381551935%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-f-l-a-g-s.html">FLAGS</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="1381551935%2FProperties%2F579055962" anchor-label="FLAGS" id="1381551935%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  flags for SyncAdapter, only relevant for synched entries through sync-adapter Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-1465196747%2FProperties%2F579055962" anchor-label="GEO_LAT" id="-1465196747%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-g-e-o_-l-a-t.html"><span><span>GEO_LAT</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1465196747%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-1465196747%2FProperties%2F579055962" anchor-label="GEO_LAT" id="-1465196747%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-g-e-o_-l-a-t.html">GEO_LAT</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-1465196747%2FProperties%2F579055962" anchor-label="GEO_LAT" id="-1465196747%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property specifies information related to the global position for the activity specified by a calendar component. This property is split in the fields <a href="-g-e-o_-l-a-t.html">GEO_LAT</a> for the latitude and <a href="-g-e-o_-l-o-n-g.html">GEO_LONG</a> for the longitude coordinates using the WGS84 ellipsoid. See [https://tools.ietf.org/html/rfc5545#section-3.8.1.6] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="1278863242%2FProperties%2F579055962" anchor-label="GEO_LONG" id="1278863242%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-g-e-o_-l-o-n-g.html"><span><span>GEO_LONG</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1278863242%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="1278863242%2FProperties%2F579055962" anchor-label="GEO_LONG" id="1278863242%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-g-e-o_-l-o-n-g.html">GEO_LONG</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="1278863242%2FProperties%2F579055962" anchor-label="GEO_LONG" id="1278863242%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property specifies information related to the global position for the activity specified by a calendar component. This property is split in the fields <a href="-g-e-o_-l-a-t.html">GEO_LAT</a> for the latitude and <a href="-g-e-o_-l-o-n-g.html">GEO_LONG</a> for the longitude coordinates using the WGS84 ellipsoid. See [https://tools.ietf.org/html/rfc5545#section-3.8.1.6] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="1903542194%2FProperties%2F579055962" anchor-label="ICALOBJECT_COLLECTIONID" id="1903542194%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-i-c-a-l-o-b-j-e-c-t_-c-o-l-l-e-c-t-i-o-n-i-d.html"><span><span>ICALOBJECT_COLLECTIONID</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1903542194%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="1903542194%2FProperties%2F579055962" anchor-label="ICALOBJECT_COLLECTIONID" id="1903542194%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-i-c-a-l-o-b-j-e-c-t_-c-o-l-l-e-c-t-i-o-n-i-d.html">ICALOBJECT_COLLECTIONID</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="1903542194%2FProperties%2F579055962" anchor-label="ICALOBJECT_COLLECTIONID" id="1903542194%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This column is the foreign key to the <a href="../-jtx-collection/index.html">JtxCollection</a>. Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a>, references <a href="../-jtx-collection/-i-d.html">JtxCollection.ID</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="1204401049%2FProperties%2F579055962" anchor-label="ID" id="1204401049%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-i-d.html"><span><span>ID</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1204401049%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="1204401049%2FProperties%2F579055962" anchor-label="ID" id="1204401049%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-i-d.html">ID</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="1204401049%2FProperties%2F579055962" anchor-label="ID" id="1204401049%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">The name of the ID column. This is the unique identifier of an ICalObject. Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="1162426548%2FProperties%2F579055962" anchor-label="LAST_MODIFIED" id="1162426548%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-l-a-s-t_-m-o-d-i-f-i-e-d.html"><span><span>LAST_MODIFIED</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1162426548%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="1162426548%2FProperties%2F579055962" anchor-label="LAST_MODIFIED" id="1162426548%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-l-a-s-t_-m-o-d-i-f-i-e-d.html">LAST_MODIFIED</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="1162426548%2FProperties%2F579055962" anchor-label="LAST_MODIFIED" id="1162426548%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property specifies the date and time that the information associated with the calendar component was last revised in the calendar store. It is saved as UNIX timestamp (milliseconds). See [https://tools.ietf.org/html/rfc5545#section-3.8.7.3] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-267853569%2FProperties%2F579055962" anchor-label="LOCATION" id="-267853569%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-l-o-c-a-t-i-o-n.html"><span><span>LOCATION</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-267853569%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-267853569%2FProperties%2F579055962" anchor-label="LOCATION" id="-267853569%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-l-o-c-a-t-i-o-n.html">LOCATION</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-267853569%2FProperties%2F579055962" anchor-label="LOCATION" id="-267853569%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property defines the intended venue for the activity defined by a calendar component. See [https://tools.ietf.org/html/rfc5545#section-3.8.1.7] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-562451416%2FProperties%2F579055962" anchor-label="LOCATION_ALTREP" id="-562451416%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-l-o-c-a-t-i-o-n_-a-l-t-r-e-p.html"><span><span>LOCATION_ALTREP</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-562451416%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-562451416%2FProperties%2F579055962" anchor-label="LOCATION_ALTREP" id="-562451416%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-l-o-c-a-t-i-o-n_-a-l-t-r-e-p.html">LOCATION_ALTREP</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-562451416%2FProperties%2F579055962" anchor-label="LOCATION_ALTREP" id="-562451416%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property defines the alternative representation of the intended venue for the activity defined by a calendar component. See [https://tools.ietf.org/html/rfc5545#section-3.8.1.7] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-1416008728%2FProperties%2F579055962" anchor-label="MODULE" id="-1416008728%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-m-o-d-u-l-e.html"><span><span>MODULE</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1416008728%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-1416008728%2FProperties%2F579055962" anchor-label="MODULE" id="-1416008728%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-m-o-d-u-l-e.html">MODULE</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-1416008728%2FProperties%2F579055962" anchor-label="MODULE" id="-1416008728%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">The column for the module. This is an internal differentiation for JOURNAL, NOTE and TODO as provided in the enum <a href="-module/index.html">Module</a>. The Module does not need to be set. On import it will be derived from the component from the <a href="-component/index.html">Component</a> (Todo or Journal/Note) and if a dtstart is present or not (Journal or Note). If the module was set, it might be overwritten on import. In this sense also unknown values are overwritten. Use e.g. Module.JOURNAL.name for a correct String value in this field. Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-1004160298%2FProperties%2F579055962" anchor-label="OTHER" id="-1004160298%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-o-t-h-e-r.html"><span><span>OTHER</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1004160298%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-1004160298%2FProperties%2F579055962" anchor-label="OTHER" id="-1004160298%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-o-t-h-e-r.html">OTHER</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-1004160298%2FProperties%2F579055962" anchor-label="OTHER" id="-1004160298%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  To specify other properties for the ICalObject. This is especially used for additional properties that cannot be put into another field, especially relevant for the synchronization The Properties are stored as JSON. There are two helper functions provided: getJsonStringFromXProperties(PropertyList<*> that returns a Json String from the property list to be stored in this other field. The counterpart to this function is getXPropertyListFromJson(String) that returns a PropertyList from a Json that was created with getJsonStringFromXProperties() Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="1124911361%2FProperties%2F579055962" anchor-label="PERCENT" id="1124911361%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-p-e-r-c-e-n-t.html"><span><span>PERCENT</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="1124911361%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="1124911361%2FProperties%2F579055962" anchor-label="PERCENT" id="1124911361%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-p-e-r-c-e-n-t.html">PERCENT</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="1124911361%2FProperties%2F579055962" anchor-label="PERCENT" id="1124911361%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property is used by an assignee or delegatee of a to-do to convey the percent completion of a to-do to the &quot;Organizer&quot;. The value must either be null or between 0 and 100. The value 0 is interpreted as null. If a value outside of the boundaries (0-100) is passed, the value is reset to null. See [https://tools.ietf.org/html/rfc5545#section-3.8.1.8] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-416628240%2FProperties%2F579055962" anchor-label="PRIORITY" id="-416628240%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-p-r-i-o-r-i-t-y.html"><span><span>PRIORITY</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-416628240%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-416628240%2FProperties%2F579055962" anchor-label="PRIORITY" id="-416628240%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-p-r-i-o-r-i-t-y.html">PRIORITY</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-416628240%2FProperties%2F579055962" anchor-label="PRIORITY" id="-416628240%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property defines the relative priority for a calendar component. See https://tools.ietf.org/html/rfc5545#section-3.8.1.9. The priority can be null or between 0 and 9. Values outside of these boundaries are accepted but internally not mapped to a string resource. Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-550697786%2FProperties%2F579055962" anchor-label="RDATE" id="-550697786%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-r-d-a-t-e.html"><span><span>RDATE</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-550697786%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-550697786%2FProperties%2F579055962" anchor-label="RDATE" id="-550697786%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-r-d-a-t-e.html">RDATE</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-550697786%2FProperties%2F579055962" anchor-label="RDATE" id="-550697786%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property defines the list of DATE-TIME values for recurring events, to-dos, journal entries, or time zone definitions. Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>, contains a list of comma-separated date values as UNIX timestamps (milliseconds) e.g. &quot;1636751475000,1636837875000&quot;. Invalid values that cannot be transformed to <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a> are ignored.</p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-1647107854%2FProperties%2F579055962" anchor-label="RECUR_ORIGINALICALOBJECTID" id="-1647107854%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-r-e-c-u-r_-o-r-i-g-i-n-a-l-i-c-a-l-o-b-j-e-c-t-i-d.html"><span><span>RECUR_ORIGINALICALOBJECTID</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1647107854%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-1647107854%2FProperties%2F579055962" anchor-label="RECUR_ORIGINALICALOBJECTID" id="-1647107854%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-r-e-c-u-r_-o-r-i-g-i-n-a-l-i-c-a-l-o-b-j-e-c-t-i-d.html">RECUR_ORIGINALICALOBJECTID</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-1647107854%2FProperties%2F579055962" anchor-label="RECUR_ORIGINALICALOBJECTID" id="-1647107854%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Stores the reference to the original event from which the recurring event was derived. This value is NULL for the orignal event or if the event is not recurring Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a>, References <a href="-i-d.html">JtxICalObject.ID</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="794830238%2FProperties%2F579055962" anchor-label="RECURID" id="794830238%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-r-e-c-u-r-i-d.html"><span><span>RECURID</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="794830238%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="794830238%2FProperties%2F579055962" anchor-label="RECURID" id="794830238%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-r-e-c-u-r-i-d.html">RECURID</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="794830238%2FProperties%2F579055962" anchor-label="RECURID" id="794830238%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property is used in conjunction with the &quot;UID&quot; and &quot;SEQUENCE&quot; properties to identify a specific instance of a recurring &quot;VEVENT&quot;, &quot;VTODO&quot;, or &quot;VJOURNAL&quot; calendar component. The property value is the original value of the &quot;DTSTART&quot; property of the recurrence instance, ie. a DATE or DATETIME value e.g. &quot;20211101T160000&quot;. Must be null for non-recurring and original events from which recurring events are derived. Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="660050232%2FProperties%2F579055962" anchor-label="RRULE" id="660050232%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-r-r-u-l-e.html"><span><span>RRULE</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="660050232%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="660050232%2FProperties%2F579055962" anchor-label="RRULE" id="660050232%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-r-r-u-l-e.html">RRULE</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="660050232%2FProperties%2F579055962" anchor-label="RRULE" id="660050232%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property defines a rule or repeating pattern for recurring events, to-dos, journal entries, or time zone definitions. The representation of the RRULE follows the value type RECUR of RFC-5545 as given in [https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10] For example: &quot;FREQ=DAILY;COUNT=10&quot; See also https://datatracker.ietf.org/doc/html/rfc5545#section-3.8.5.3. Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="300985571%2FProperties%2F579055962" anchor-label="SCHEDULETAG" id="300985571%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-s-c-h-e-d-u-l-e-t-a-g.html"><span><span>SCHEDULETAG</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="300985571%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="300985571%2FProperties%2F579055962" anchor-label="SCHEDULETAG" id="300985571%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-s-c-h-e-d-u-l-e-t-a-g.html">SCHEDULETAG</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="300985571%2FProperties%2F579055962" anchor-label="SCHEDULETAG" id="300985571%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  scheduleTag for SyncAdapter, only relevant for synched entries through sync-adapter Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-918884749%2FProperties%2F579055962" anchor-label="SEQUENCE" id="-918884749%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-s-e-q-u-e-n-c-e.html"><span><span>SEQUENCE</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-918884749%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-918884749%2FProperties%2F579055962" anchor-label="SEQUENCE" id="-918884749%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-s-e-q-u-e-n-c-e.html">SEQUENCE</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-918884749%2FProperties%2F579055962" anchor-label="SEQUENCE" id="-918884749%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property defines the revision sequence number of the calendar component within a sequence of revisions. If no sequence is present, it is automatically initialized with 0 See [https://tools.ietf.org/html/rfc5545#section-3.8.7.4] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-580328158%2FProperties%2F579055962" anchor-label="STATUS" id="-580328158%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-s-t-a-t-u-s.html"><span><span>STATUS</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-580328158%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-580328158%2FProperties%2F579055962" anchor-label="STATUS" id="-580328158%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-s-t-a-t-u-s.html">STATUS</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-580328158%2FProperties%2F579055962" anchor-label="STATUS" id="-580328158%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property defines the overall status or confirmation for the calendar component. The possible values of a status are defined in <a href="-status-todo/index.html">StatusTodo</a> for To-Dos and in <a href="-status-journal/index.html">StatusJournal</a> for Notes and Journals If no valid Status is used, the value is taken and will be shown as-is. Also null-value is allowed. See [https://tools.ietf.org/html/rfc5545#section-3.8.1.11] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-282565440%2FProperties%2F579055962" anchor-label="SUMMARY" id="-282565440%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-s-u-m-m-a-r-y.html"><span><span>SUMMARY</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-282565440%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-282565440%2FProperties%2F579055962" anchor-label="SUMMARY" id="-282565440%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-s-u-m-m-a-r-y.html">SUMMARY</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-282565440%2FProperties%2F579055962" anchor-label="SUMMARY" id="-282565440%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This column/property defines a short summary or subject for the calendar component. See [https://tools.ietf.org/html/rfc5545#section-3.8.1.12] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="-1453896814%2FProperties%2F579055962" anchor-label="TZ_ALLDAY" id="-1453896814%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-t-z_-a-l-l-d-a-y.html"><span><span>TZ_ALLDAY</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-1453896814%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="-1453896814%2FProperties%2F579055962" anchor-label="TZ_ALLDAY" id="-1453896814%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-t-z_-a-l-l-d-a-y.html">TZ_ALLDAY</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="-1453896814%2FProperties%2F579055962" anchor-label="TZ_ALLDAY" id="-1453896814%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Constant to define all day values (for dtstart, due, completed timezone fields</p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="541282262%2FProperties%2F579055962" anchor-label="UID" id="541282262%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-u-i-d.html"><span><span>UID</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="541282262%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="541282262%2FProperties%2F579055962" anchor-label="UID" id="541282262%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-u-i-d.html">UID</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="541282262%2FProperties%2F579055962" anchor-label="UID" id="541282262%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property defines the persistent, globally unique identifier for the calendar component. See [https://tools.ietf.org/html/rfc5545#section-3.8.4.7] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
<a data-name="854032279%2FProperties%2F579055962" anchor-label="URL" id="854032279%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a>
        <div class="table-row" data-filterable-current=":dokkaHtml/release" data-filterable-set=":dokkaHtml/release">
          <div class="main-subrow keyValue ">
            <div class=""><span class="inline-flex">
                <div><a href="-u-r-l.html"><span><span>URL</span></span></a></div>
<span class="anchor-wrapper"><span class="anchor-icon" pointing-to="854032279%2FProperties%2F579055962"></span>
                  <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
                </span></span></div>
            <div>
              <div class="title">
                <div class="platform-hinted " data-platform-hinted="data-platform-hinted" data-togglable="Properties"><div class="content sourceset-dependent-content" data-active="" data-togglable=":dokkaHtml/release"><a data-name="854032279%2FProperties%2F579055962" anchor-label="URL" id="854032279%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><div class="symbol monospace"><span class="token keyword">const </span><span class="token keyword">val </span><a href="-u-r-l.html">URL</a><span class="token operator">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></div><div class="brief "><a data-name="854032279%2FProperties%2F579055962" anchor-label="URL" id="854032279%2FProperties%2F579055962" data-filterable-set=":dokkaHtml/release"></a><p class="paragraph">Purpose:  This property defines a Uniform Resource Locator (URL) associated with the iCalendar object. See [https://tools.ietf.org/html/rfc5545#section-3.8.4.6] Type: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></p></div></div></div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
      <div class="footer">
        <span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span
                class="pull-right"><span>Generated by </span><a
                href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span>
      </div>
    </div>
</div>
</body>
</html>