Class CheckoutComWebhookResponse
- java.lang.Object
-
- com.broadleafcommerce.payment.service.gateway.webhooks.domain.CheckoutComWebhookResponse
-
public class CheckoutComWebhookResponse extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCheckoutComWebhookResponse.Data
-
Constructor Summary
Constructors Constructor Description CheckoutComWebhookResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCreatedOn()The webhook event creation time.CheckoutComWebhookResponse.DatagetData()The data field contains information about the interaction - ie payment approval, payment captured, etc.StringgetId()The webhook event id.StringgetType()The webhook event type.voidsetCreatedOn(String createdOn)The webhook event creation time.voidsetData(CheckoutComWebhookResponse.Data data)The data field contains information about the interaction - ie payment approval, payment captured, etc.voidsetId(String id)The webhook event id.voidsetType(String type)The webhook event type.
-
-
-
Method Detail
-
getId
public String getId()
The webhook event id.
-
getType
public String getType()
The webhook event type.
-
getCreatedOn
public String getCreatedOn()
The webhook event creation time.
-
getData
public CheckoutComWebhookResponse.Data getData()
The data field contains information about the interaction - ie payment approval, payment captured, etc.
-
setId
public void setId(String id)
The webhook event id.
-
setType
public void setType(String type)
The webhook event type.
-
setCreatedOn
public void setCreatedOn(String createdOn)
The webhook event creation time.
-
setData
public void setData(CheckoutComWebhookResponse.Data data)
The data field contains information about the interaction - ie payment approval, payment captured, etc.
-
-