is1PApiCustomer function
Whether the user is a 1P API customer (not subscriber, not 3P).
Implementation
bool is1PApiCustomer() {
if (isUsing3PServices()) return false;
if (isNeomageAISubscriber()) return false;
return true;
}
Whether the user is a 1P API customer (not subscriber, not 3P).
bool is1PApiCustomer() {
if (isUsing3PServices()) return false;
if (isNeomageAISubscriber()) return false;
return true;
}