Author

data class Author(val name: String? = null, val email: Email? = null, val link: Link? = null)(source)

Represents information about the author of the GPX file.

See personType.

Constructors

Link copied to clipboard
constructor(name: String? = null, email: Email? = null, link: Link? = null)

Properties

Link copied to clipboard
val email: Email?

Email address of the author.

Link copied to clipboard
val link: Link?

Link to a website or other information about the author.

Link copied to clipboard
val name: String?

Name of the person or organization.