/src/main/java/com/stripe/model/terminal/Location.java

http://github.com/stripe/stripe-java · Java · 222 lines · 144 code · 28 blank · 50 comment · 0 complexity · 5a524ffcfafcfdd6eef3abd4c60b7529 MD5 · raw file

  1. // File generated from our OpenAPI spec
  2. package com.stripe.model.terminal;
  3. import com.google.gson.annotations.SerializedName;
  4. import com.stripe.Stripe;
  5. import com.stripe.exception.StripeException;
  6. import com.stripe.model.Address;
  7. import com.stripe.model.HasId;
  8. import com.stripe.model.MetadataStore;
  9. import com.stripe.net.ApiResource;
  10. import com.stripe.net.RequestOptions;
  11. import com.stripe.param.terminal.LocationCreateParams;
  12. import com.stripe.param.terminal.LocationListParams;
  13. import com.stripe.param.terminal.LocationRetrieveParams;
  14. import com.stripe.param.terminal.LocationUpdateParams;
  15. import java.util.Map;
  16. import lombok.EqualsAndHashCode;
  17. import lombok.Getter;
  18. import lombok.Setter;
  19. @Getter
  20. @Setter
  21. @EqualsAndHashCode(callSuper = false)
  22. public class Location extends ApiResource implements HasId, MetadataStore<Location> {
  23. @SerializedName("address")
  24. Address address;
  25. /** Always true for a deleted object. */
  26. @SerializedName("deleted")
  27. Boolean deleted;
  28. /** The display name of the location. */
  29. @SerializedName("display_name")
  30. String displayName;
  31. /** Unique identifier for the object. */
  32. @Getter(onMethod_ = {@Override})
  33. @SerializedName("id")
  34. String id;
  35. /**
  36. * Has the value {@code true} if the object exists in live mode or the value {@code false} if the
  37. * object exists in test mode.
  38. */
  39. @SerializedName("livemode")
  40. Boolean livemode;
  41. /**
  42. * Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach
  43. * to an object. This can be useful for storing additional information about the object in a
  44. * structured format.
  45. */
  46. @Getter(onMethod_ = {@Override})
  47. @SerializedName("metadata")
  48. Map<String, String> metadata;
  49. /**
  50. * String representing the object's type. Objects of the same type share the same value.
  51. *
  52. * <p>Equal to {@code terminal.location}.
  53. */
  54. @SerializedName("object")
  55. String object;
  56. /** Retrieves a <code>Location</code> object. */
  57. public static Location retrieve(String location) throws StripeException {
  58. return retrieve(location, (Map<String, Object>) null, (RequestOptions) null);
  59. }
  60. /** Retrieves a <code>Location</code> object. */
  61. public static Location retrieve(String location, RequestOptions options) throws StripeException {
  62. return retrieve(location, (Map<String, Object>) null, options);
  63. }
  64. /** Retrieves a <code>Location</code> object. */
  65. public static Location retrieve(
  66. String location, Map<String, Object> params, RequestOptions options) throws StripeException {
  67. String url =
  68. String.format(
  69. "%s%s",
  70. Stripe.getApiBase(),
  71. String.format("/v1/terminal/locations/%s", ApiResource.urlEncodeId(location)));
  72. return ApiResource.request(ApiResource.RequestMethod.GET, url, params, Location.class, options);
  73. }
  74. /** Retrieves a <code>Location</code> object. */
  75. public static Location retrieve(
  76. String location, LocationRetrieveParams params, RequestOptions options)
  77. throws StripeException {
  78. String url =
  79. String.format(
  80. "%s%s",
  81. Stripe.getApiBase(),
  82. String.format("/v1/terminal/locations/%s", ApiResource.urlEncodeId(location)));
  83. return ApiResource.request(ApiResource.RequestMethod.GET, url, params, Location.class, options);
  84. }
  85. /** Creates a new <code>Location</code> object. */
  86. public static Location create(Map<String, Object> params) throws StripeException {
  87. return create(params, (RequestOptions) null);
  88. }
  89. /** Creates a new <code>Location</code> object. */
  90. public static Location create(Map<String, Object> params, RequestOptions options)
  91. throws StripeException {
  92. String url = String.format("%s%s", Stripe.getApiBase(), "/v1/terminal/locations");
  93. return ApiResource.request(
  94. ApiResource.RequestMethod.POST, url, params, Location.class, options);
  95. }
  96. /** Creates a new <code>Location</code> object. */
  97. public static Location create(LocationCreateParams params) throws StripeException {
  98. return create(params, (RequestOptions) null);
  99. }
  100. /** Creates a new <code>Location</code> object. */
  101. public static Location create(LocationCreateParams params, RequestOptions options)
  102. throws StripeException {
  103. String url = String.format("%s%s", Stripe.getApiBase(), "/v1/terminal/locations");
  104. return ApiResource.request(
  105. ApiResource.RequestMethod.POST, url, params, Location.class, options);
  106. }
  107. /**
  108. * Updates a <code>Location</code> object by setting the values of the parameters passed. Any
  109. * parameters not provided will be left unchanged.
  110. */
  111. @Override
  112. public Location update(Map<String, Object> params) throws StripeException {
  113. return update(params, (RequestOptions) null);
  114. }
  115. /**
  116. * Updates a <code>Location</code> object by setting the values of the parameters passed. Any
  117. * parameters not provided will be left unchanged.
  118. */
  119. @Override
  120. public Location update(Map<String, Object> params, RequestOptions options)
  121. throws StripeException {
  122. String url =
  123. String.format(
  124. "%s%s",
  125. Stripe.getApiBase(),
  126. String.format("/v1/terminal/locations/%s", ApiResource.urlEncodeId(this.getId())));
  127. return ApiResource.request(
  128. ApiResource.RequestMethod.POST, url, params, Location.class, options);
  129. }
  130. /**
  131. * Updates a <code>Location</code> object by setting the values of the parameters passed. Any
  132. * parameters not provided will be left unchanged.
  133. */
  134. public Location update(LocationUpdateParams params) throws StripeException {
  135. return update(params, (RequestOptions) null);
  136. }
  137. /**
  138. * Updates a <code>Location</code> object by setting the values of the parameters passed. Any
  139. * parameters not provided will be left unchanged.
  140. */
  141. public Location update(LocationUpdateParams params, RequestOptions options)
  142. throws StripeException {
  143. String url =
  144. String.format(
  145. "%s%s",
  146. Stripe.getApiBase(),
  147. String.format("/v1/terminal/locations/%s", ApiResource.urlEncodeId(this.getId())));
  148. return ApiResource.request(
  149. ApiResource.RequestMethod.POST, url, params, Location.class, options);
  150. }
  151. /** Returns a list of <code>Location</code> objects. */
  152. public static LocationCollection list(Map<String, Object> params) throws StripeException {
  153. return list(params, (RequestOptions) null);
  154. }
  155. /** Returns a list of <code>Location</code> objects. */
  156. public static LocationCollection list(Map<String, Object> params, RequestOptions options)
  157. throws StripeException {
  158. String url = String.format("%s%s", Stripe.getApiBase(), "/v1/terminal/locations");
  159. return ApiResource.requestCollection(url, params, LocationCollection.class, options);
  160. }
  161. /** Returns a list of <code>Location</code> objects. */
  162. public static LocationCollection list(LocationListParams params) throws StripeException {
  163. return list(params, (RequestOptions) null);
  164. }
  165. /** Returns a list of <code>Location</code> objects. */
  166. public static LocationCollection list(LocationListParams params, RequestOptions options)
  167. throws StripeException {
  168. String url = String.format("%s%s", Stripe.getApiBase(), "/v1/terminal/locations");
  169. return ApiResource.requestCollection(url, params, LocationCollection.class, options);
  170. }
  171. /** Deletes a <code>Location</code> object. */
  172. public Location delete() throws StripeException {
  173. return delete((Map<String, Object>) null, (RequestOptions) null);
  174. }
  175. /** Deletes a <code>Location</code> object. */
  176. public Location delete(RequestOptions options) throws StripeException {
  177. return delete((Map<String, Object>) null, options);
  178. }
  179. /** Deletes a <code>Location</code> object. */
  180. public Location delete(Map<String, Object> params) throws StripeException {
  181. return delete(params, (RequestOptions) null);
  182. }
  183. /** Deletes a <code>Location</code> object. */
  184. public Location delete(Map<String, Object> params, RequestOptions options)
  185. throws StripeException {
  186. String url =
  187. String.format(
  188. "%s%s",
  189. Stripe.getApiBase(),
  190. String.format("/v1/terminal/locations/%s", ApiResource.urlEncodeId(this.getId())));
  191. return ApiResource.request(
  192. ApiResource.RequestMethod.DELETE, url, params, Location.class, options);
  193. }
  194. }