All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.checkout.accounts.payout.schedule.DaySchedule Maven / Gradle / Ivy

There is a newer version: 6.4.2
Show newest version
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