pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 445 B
TypeScript
/**
* @description Enum for business relation values.
*
* Business relation to the customer. Possible values:
* * B2C - Indicates business to consumer
* * B2B - Indicates business to business
*
* Mandatory for the the following payment methods:
* * 3390 - PAYONE Secured Invoice
* * 3391 - PAYONE Secured Installment
* * 3392 - PAYONE Secured Direct Debit
*/
export declare enum BusinessRelation {
B2C = "B2C",
B2B = "B2B"
}