com.youcruit.billogram.objects.request.billogram.BillogramOrderField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of billogram-v2-api-java-lib Show documentation
Show all versions of billogram-v2-api-java-lib Show documentation
Library for connecting to the Billogram v2 API
package com.youcruit.billogram.objects.request.billogram;
import com.youcruit.billogram.objects.request.OrderField;
public enum BillogramOrderField implements OrderField {
INVOICE_NO("invoice_no"), INVOICE_DATE("invoice_date"), DUE_DATE("due_date"), CUSTOMER_NAME("customer:name"), CUSTOMER_NO("customer:customer_no"),
STATE("state");
private final String fieldName;
@Override
public String getFieldName() {
return fieldName;
}
BillogramOrderField(String fieldName) {
this.fieldName = fieldName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy