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

com.urbanairship.api.schedule.ListSchedulesOrderType Maven / Gradle / Ivy

There is a newer version: 9.3.0
Show newest version
package com.urbanairship.api.schedule;

/**
 * A class of ordering options for Schedules API listing responses.
 */
public enum ListSchedulesOrderType {

    ASC("asc"),
    DESC("desc");

    private String key;

    ListSchedulesOrderType(String key) {
        this.key = key;
    }

    public String getKey() {
        return this.key;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy