View Javadoc

1   package com.atlassian.marketplace.client.api;
2   
3   /**
4    * Represents the available types of pricing for Atlassian applications.
5    * @since 2.0.0
6    */
7   public enum PricingType implements EnumWithKey
8   {
9       SERVER("server"),
10      
11      CLOUD("cloud");
12      
13      private final String key;
14      
15      private PricingType(String key)
16      {
17          this.key = key;
18      }
19      
20      @Override
21      public String getKey()
22      {
23          return key;
24      }
25  }