Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ public class OrderDTO extends BaseOrderDTO

private List<SubscriptionBillingItemDTO> billingItems;

private List<BillingItemValueDTO> billingItemValues;

private Boolean customerCloudCredential;

private Boolean deferred;
Expand Down Expand Up @@ -50,6 +52,16 @@ public void setBillingItems( List<SubscriptionBillingItemDTO> billingItems )
this.billingItems = billingItems;
}

public List<BillingItemValueDTO> getBillingItemValues()
{
return billingItemValues;
}

public void setBillingItemValues( List<BillingItemValueDTO> billingItemValues )
{
this.billingItemValues = billingItemValues;
}

public Boolean getCustomerCloudCredential()
{
return customerCloudCredential;
Expand Down