-
Search for a name or filename which contains this name
Declaration
Swift
public var name: String? -
Limit search results to activities with localities containing this text
Declaration
Swift
public var locality: String? -
Search for files with a start timestamp >= this value. Value is a unix timestamp in milliseconds
Declaration
Swift
public var fromTime: Milliseconds? -
Search for files with a start timestamp <= this value. Value is a unix timestamp in milliseconds
Declaration
Swift
public var toTime: Milliseconds? -
Search for activities which occurred on or are scheduled on this day of the year
Declaration
Swift
public var day: Int? -
Search for activities which occurred on or are scheduled in this year
Declaration
Swift
public var year: Int? -
Search for activities which occurred in these date ranges - use this for unix timestamps + timezone
Declaration
Swift
public var dateRanges: [DateRange]? -
Search for activities which occurred in these date ranges - use this for year + day of year
Declaration
Swift
public var dayRanges: [DayRange]? -
Search for completed activities which have attributes in the given ranges. ie all rides with a distance between 100 - 150km fieldName –> min,max
Declaration
Swift
public var ranges: [String : [Double]]? -
Limit the search results to activities of this workout type
Declaration
Swift
public var workout: WorkoutType? -
Limit the search results to activities of this equipment
Declaration
Swift
public var equipment: Equipment? -
Limit the search results to activities with this source type
Declaration
Swift
public var source: ResultSource? -
Limit the search results to activities with this review type
Declaration
Swift
public var review: ResultReview? -
Limit the search results to activities with this state
Declaration
Swift
public var state: UserWorkoutState? -
Limit the search results to activities of this workout incomplete reason
Declaration
Swift
public var reason: UserWorkoutFailedReason? -
Undocumented
Declaration
Swift
public var reviewMask: Int? -
Undocumented
Declaration
Swift
public var powerManufacturer: String? -
Undocumented
Declaration
Swift
public var powerVersion: String? -
Undocumented
Declaration
Swift
public var powerSerial: String? -
Undocumented
Declaration
Swift
public var powerProduct: String? -
Undocumented
Declaration
Swift
public var powerDisplay: String? -
Search for files related to the given user
Declaration
Swift
public var user: User? -
Limit the search results to activities who have null entries for the given fields
Declaration
Swift
public var isNull: [String]? -
Limit the search results to activities who do not have null entries for the given fields
Declaration
Swift
public var isNotNull: [String]? -
Limit the search results to activities related to these userIds
Declaration
Swift
public var userIDs: [Int]? -
Undocumented
Declaration
Swift
public var orderBy: String? -
Order the results according to these fields
Declaration
Swift
public var order: [Order]? -
Limit the search results to exclude activities of this workout type
Declaration
Swift
public var excludeWorkouts: [WorkoutType]? -
Limit the search results to activities of these sport
Declaration
Swift
public var sports: [ActivityType]? -
Undocumented
Declaration
Swift
public var meta: [String : String]? -
Undocumented
Declaration
Swift
public init()
View on GitHub
UserWorkoutFileSearch Structure Reference