org.theta4j.webapi.TimeShiftSupport.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of theta-web-api Show documentation
Show all versions of theta-web-api Show documentation
Client implementation of RICOH THETA API.
The newest version!
package org.theta4j.webapi
import kotlinx.serialization.Serializable
@Serializable
data class TimeShiftSupport(
val firstShooting: List,
val firstInterval: IntervalSupport,
val secondInterval: IntervalSupport,
) {
@Serializable
data class IntervalSupport(
val minInterval: Int,
val maxInterval: Int,
val stepSize: Int,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy