Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions app/src/main/java/at/techbee/jtx/contract/JtxContract.kt
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ object JtxContract {
/**
* Purpose: Defines the radius for a geofence in meters
* This is put into an extended property in the iCalendar-file
* Type: [String]
* Type: [Int]
*/
const val GEOFENCE_RADIUS = "geofenceRadius"

Expand Down Expand Up @@ -349,7 +349,7 @@ object JtxContract {
* This property is split in the fields [GEO_LAT] for the latitude
* and [GEO_LONG] for the longitude coordinates using the WGS84 ellipsoid.
* See [https://tools.ietf.org/html/rfc5545#section-3.8.1.6]
* Type: [Float]
* Type: [Double]
*/
const val GEO_LAT = "geolat"

Expand All @@ -365,7 +365,7 @@ object JtxContract {
/**
* 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: [Double]
* Type: [String]
*/
const val LOCATION = "location"

Expand Down Expand Up @@ -489,7 +489,7 @@ object JtxContract {
* The property value is the original value of the "DTSTART" property
* of the recurrence instance, ie. a DATE or DATETIME value e.g. "20211101T160000".
* Must be null for non-recurring and original events from which recurring events are derived.
* Type: [String?]
* Type: [String]
*/
const val RECURID_TIMEZONE = "recuridtimezone"

Expand Down Expand Up @@ -541,7 +541,7 @@ object JtxContract {
* 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: [Int]
* Type: [Long]
*/
const val SEQUENCE = "sequence"

Expand Down Expand Up @@ -1360,6 +1360,7 @@ object JtxContract {
/**
* This property contains a CSV-list of attendees as Uris
* e.g. "mailto:contact@techbee.at,mailto:jtx@techbee.at"
* Type: [String]
*/
const val ATTENDEE = "attendee"

Expand Down