com.checkout.accounts.payout.schedule.DaySchedule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of checkout-sdk-java Show documentation
Show all versions of checkout-sdk-java Show documentation
Checkout SDK for Java https://checkout.com
package com.checkout.accounts.payout.schedule;
import com.google.gson.annotations.SerializedName;
public enum DaySchedule {
@SerializedName(value = "monday", alternate = {"Monday"})
MONDAY,
@SerializedName(value = "tuesday", alternate = {"Tuesday"})
TUESDAY,
@SerializedName(value = "wednesday", alternate = {"Wednesday"})
WEDNESDAY,
@SerializedName(value = "thursday", alternate = {"Thursday"})
THURSDAY,
@SerializedName(value = "friday", alternate = {"Friday"})
FRIDAY,
@SerializedName(value = "saturday", alternate = {"Saturday"})
SATURDAY,
@SerializedName(value = "sunday", alternate = {"Sunday"})
SUNDAY
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy