com.microsoft.bingads.v13.customerbilling.InsertionOrderPendingChangesStatus Maven / Gradle / Ivy
package com.microsoft.bingads.v13.customerbilling;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for InsertionOrderPendingChangesStatus.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "InsertionOrderPendingChangesStatus", namespace = "https://bingads.microsoft.com/Customer/v13/Entities")
@XmlEnum
public enum InsertionOrderPendingChangesStatus {
@XmlEnumValue("PendingUserReview")
PENDING_USER_REVIEW("PendingUserReview"),
@XmlEnumValue("ApproveChanges")
APPROVE_CHANGES("ApproveChanges"),
@XmlEnumValue("DeclineChanges")
DECLINE_CHANGES("DeclineChanges"),
@XmlEnumValue("CancelChanges")
CANCEL_CHANGES("CancelChanges");
private final String value;
InsertionOrderPendingChangesStatus(String v) {
value = v;
}
public String value() {
return value;
}
public static InsertionOrderPendingChangesStatus fromValue(String v) {
for (InsertionOrderPendingChangesStatus c: InsertionOrderPendingChangesStatus.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy