ExercisePlan

public class ExercisePlan : Item

Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.

  • The title of an Item.

    Declaration

    Swift

    @objc
    dynamic var title: String?
  • An abstract is a short description that summarizes an Items content.

    Declaration

    Swift

    @objc
    dynamic var abstract: String?
  • Date of first broadcast/publication.

    Declaration

    Swift

    @objc
    dynamic var datePublished: Date?
  • Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.

    Declaration

    Swift

    @objc
    dynamic var keyword: String?
  • The content of an Item.

    Declaration

    Swift

    @objc
    dynamic var content: String?
  • The plain text content of an Item, without styling or syntax for Markdown, HTML, etc.

    Declaration

    Swift

    @objc
    dynamic var textContent: String?
  • If this MediaObject is an AudioObject or VideoObject, the transcript of that object.

    Declaration

    Swift

    @objc
    dynamic var transcript: String?
  • The type or (sub)category of some Item.

    Declaration

    Swift

    @objc
    dynamic var itemType: String?
  • The duration of an Item, for instance an event or an Audio file.

    Declaration

    Swift

    let duration: RealmOptional<Int>
  • The number of times something is repeated.

    Declaration

    Swift

    let repetitions: RealmOptional<Int>
  • An audio object.

    Declaration

    Swift

    var audio: Results<Audio>? { get }
  • A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.

    Declaration

    Swift

    var citation: Results<CreativeWork>? { get }
  • The location depicted or described in the content. For example, the location in a photograph or painting.

    Declaration

    Swift

    var contentLocation: Results<Location>? { get }
  • The location where the Item was created, which may not be the same as the location depicted in the Item.

    Declaration

    Swift

    var locationCreated: Results<Location>? { get }
  • A video object.

    Declaration

    Swift

    var video: Results<Video>? { get }
  • The author of this Item.

    Declaration

    Swift

    var writtenBy: Results<Person>? { get }
  • Any type of file that can be stored on disk.

    Declaration

    Swift

    var file: Results<File>? { get }
  • The event where something is recorded.

    Declaration

    Swift

    var recordedAt: Results<Event>? { get }
  • A review of the Item.

    Declaration

    Swift

    var review: Results<Review>? { get }
  • The amount of energy something takes.

    Declaration

    Swift

    var workload: Results<Measure>? { get }
  • The frequency of an Item.

    Declaration

    Swift

    var frequency: Results<Frequency>? { get }
  • Undocumented

    Declaration

    Swift

    public required convenience init(from decoder: Decoder) throws