CustomerQualification Enum

  • java.lang.Object
    • java.lang.Enum
      • com.microsoft.store.partnercenter.models.customers.CustomerQualification

public enum CustomerQualification extends Enum<CustomerQualification>

When a partner creates a new customer by default the customer is assigned "CustomerQualification.None". If the partner validates that the customer belongs to Education segment they can set the qualification of the Customer to "CustomerQualification.Education". This operation is irreversible and the partner will not be allowed to override the customer qualification once set.

Fields

EDUCATION

Education Qualification

NONE

No Qualification

NONPROFIT

Non-Profit / Charity Qualification

Inherited Members

java.lang.Enum.<T>valueOf(java.lang.Class<T>,java.lang.String) java.lang.Enum.clone() java.lang.Enum.compareTo(E) java.lang.Enum.equals(java.lang.Object) java.lang.Enum.finalize() java.lang.Enum.getDeclaringClass() java.lang.Enum.hashCode() java.lang.Enum.name() java.lang.Enum.ordinal() java.lang.Enum.toString() java.lang.Object.getClass() java.lang.Object.notify() java.lang.Object.notifyAll() java.lang.Object.wait() java.lang.Object.wait(long) java.lang.Object.wait(long,int)

Methods

toString()

public String toString()

Converts the object to a string.

Returns

java.lang.String
A string that represents this object.
Overrides
java.lang.Enum.toString()

valueOf(String name)

public static CustomerQualification valueOf(String name)

Parameters

name
java.lang.String

Returns

values()

public static CustomerQualification[] values()

Returns

Applies to