-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Recommend billing item presence (#748)
* API version V20211004
- Loading branch information
Showing
3 changed files
with
50 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
.../src/main/java/com/cloudesire/platform/apiclient/dto/model/enums/BillingItemPresence.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package com.cloudesire.platform.apiclient.dto.model.enums; | ||
|
||
import io.swagger.annotations.ApiModel; | ||
import io.swagger.annotations.ApiModelProperty; | ||
|
||
@ApiModel( "Configuration for the presence of the Billing Item when buying a Subscription" ) | ||
public enum BillingItemPresence | ||
{ | ||
@ApiModelProperty( "The Billing Item is optional" ) | ||
OPTIONAL, | ||
|
||
@ApiModelProperty( "The Billing Item will be included in every Subscription" ) | ||
REQUIRED, | ||
|
||
@ApiModelProperty( "The Billing Item will be suggested for inclusion on purchase" ) | ||
RECOMMENDED | ||
} |