com.tink.rest.models.OneOffPeriodicity.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest Show documentation
Show all versions of rest Show documentation
A library for Tink core services
/**
* NOTE: This class is auto generated by the Swagger Gradle Codegen for the following API: Tink API
*
* More info on this tool is available on https://github.com/Yelp/swagger-gradle-codegen
*/
package com.tink.rest.models
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
* @property start Budget start expressed as UTC epoch timestamp in milliseconds.
* @property end Budget end expressed as UTC epoch timestamp in milliseconds.
*/
@JsonClass(generateAdapter = true)
data class OneOffPeriodicity(
@Json(name = "start") @field:Json(name = "start") var start: Long,
@Json(name = "end") @field:Json(name = "end") var end: Long
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy