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

com.youcruit.billogram.objects.request.item.ItemOrderField Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.youcruit.billogram.objects.request.item;

import com.youcruit.billogram.objects.request.OrderField;

public enum ItemOrderField implements OrderField {
    ITEM_NO("item_no"),
    TITLE("title"),
    PRICE("price"),
    CREATED_AT("created_at"),
    UPDATED_AT("updated_at");

    private final String fieldName;

    @Override
    public String getFieldName() {
	return fieldName;
    }

    ItemOrderField(String fieldName) {
	this.fieldName = fieldName;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy