/src/main/java/com/stripe/param/terminal/ReaderCreateParams.java

http://github.com/stripe/stripe-java · Java · 224 lines · 122 code · 27 blank · 75 comment · 14 complexity · f0367a3e89a82eb63676a9de8c111160 MD5 · raw file

  1. // File generated from our OpenAPI spec
  2. package com.stripe.param.terminal;
  3. import com.google.gson.annotations.SerializedName;
  4. import com.stripe.net.ApiRequestParams;
  5. import com.stripe.param.common.EmptyParam;
  6. import java.util.ArrayList;
  7. import java.util.HashMap;
  8. import java.util.List;
  9. import java.util.Map;
  10. import lombok.Getter;
  11. @Getter
  12. public class ReaderCreateParams extends ApiRequestParams {
  13. /** Specifies which fields in the response should be expanded. */
  14. @SerializedName("expand")
  15. List<String> expand;
  16. /**
  17. * Map of extra parameters for custom features not available in this client library. The content
  18. * in this map is not serialized under this field's {@code @SerializedName} value. Instead, each
  19. * key/value pair is serialized as if the key is a root-level field (serialized) name in this
  20. * param object. Effectively, this map is flattened to its parent instance.
  21. */
  22. @SerializedName(ApiRequestParams.EXTRA_PARAMS_KEY)
  23. Map<String, Object> extraParams;
  24. /**
  25. * Custom label given to the reader for easier identification. If no label is specified, the
  26. * registration code will be used.
  27. */
  28. @SerializedName("label")
  29. String label;
  30. /**
  31. * The location to assign the reader to. If no location is specified, the reader will be assigned
  32. * to the account's default location.
  33. */
  34. @SerializedName("location")
  35. String location;
  36. /**
  37. * Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach
  38. * to an object. This can be useful for storing additional information about the object in a
  39. * structured format. Individual keys can be unset by posting an empty value to them. All keys can
  40. * be unset by posting an empty value to {@code metadata}.
  41. */
  42. @SerializedName("metadata")
  43. Object metadata;
  44. /** A code generated by the reader used for registering to an account. */
  45. @SerializedName("registration_code")
  46. String registrationCode;
  47. private ReaderCreateParams(
  48. List<String> expand,
  49. Map<String, Object> extraParams,
  50. String label,
  51. String location,
  52. Object metadata,
  53. String registrationCode) {
  54. this.expand = expand;
  55. this.extraParams = extraParams;
  56. this.label = label;
  57. this.location = location;
  58. this.metadata = metadata;
  59. this.registrationCode = registrationCode;
  60. }
  61. public static Builder builder() {
  62. return new Builder();
  63. }
  64. public static class Builder {
  65. private List<String> expand;
  66. private Map<String, Object> extraParams;
  67. private String label;
  68. private String location;
  69. private Object metadata;
  70. private String registrationCode;
  71. /** Finalize and obtain parameter instance from this builder. */
  72. public ReaderCreateParams build() {
  73. return new ReaderCreateParams(
  74. this.expand,
  75. this.extraParams,
  76. this.label,
  77. this.location,
  78. this.metadata,
  79. this.registrationCode);
  80. }
  81. /**
  82. * Add an element to `expand` list. A list is initialized for the first `add/addAll` call, and
  83. * subsequent calls adds additional elements to the original list. See {@link
  84. * ReaderCreateParams#expand} for the field documentation.
  85. */
  86. public Builder addExpand(String element) {
  87. if (this.expand == null) {
  88. this.expand = new ArrayList<>();
  89. }
  90. this.expand.add(element);
  91. return this;
  92. }
  93. /**
  94. * Add all elements to `expand` list. A list is initialized for the first `add/addAll` call, and
  95. * subsequent calls adds additional elements to the original list. See {@link
  96. * ReaderCreateParams#expand} for the field documentation.
  97. */
  98. public Builder addAllExpand(List<String> elements) {
  99. if (this.expand == null) {
  100. this.expand = new ArrayList<>();
  101. }
  102. this.expand.addAll(elements);
  103. return this;
  104. }
  105. /**
  106. * Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll`
  107. * call, and subsequent calls add additional key/value pairs to the original map. See {@link
  108. * ReaderCreateParams#extraParams} for the field documentation.
  109. */
  110. public Builder putExtraParam(String key, Object value) {
  111. if (this.extraParams == null) {
  112. this.extraParams = new HashMap<>();
  113. }
  114. this.extraParams.put(key, value);
  115. return this;
  116. }
  117. /**
  118. * Add all map key/value pairs to `extraParams` map. A map is initialized for the first
  119. * `put/putAll` call, and subsequent calls add additional key/value pairs to the original map.
  120. * See {@link ReaderCreateParams#extraParams} for the field documentation.
  121. */
  122. public Builder putAllExtraParam(Map<String, Object> map) {
  123. if (this.extraParams == null) {
  124. this.extraParams = new HashMap<>();
  125. }
  126. this.extraParams.putAll(map);
  127. return this;
  128. }
  129. /**
  130. * Custom label given to the reader for easier identification. If no label is specified, the
  131. * registration code will be used.
  132. */
  133. public Builder setLabel(String label) {
  134. this.label = label;
  135. return this;
  136. }
  137. /**
  138. * The location to assign the reader to. If no location is specified, the reader will be
  139. * assigned to the account's default location.
  140. */
  141. public Builder setLocation(String location) {
  142. this.location = location;
  143. return this;
  144. }
  145. /**
  146. * Add a key/value pair to `metadata` map. A map is initialized for the first `put/putAll` call,
  147. * and subsequent calls add additional key/value pairs to the original map. See {@link
  148. * ReaderCreateParams#metadata} for the field documentation.
  149. */
  150. @SuppressWarnings("unchecked")
  151. public Builder putMetadata(String key, String value) {
  152. if (this.metadata == null || this.metadata instanceof EmptyParam) {
  153. this.metadata = new HashMap<String, String>();
  154. }
  155. ((Map<String, String>) this.metadata).put(key, value);
  156. return this;
  157. }
  158. /**
  159. * Add all map key/value pairs to `metadata` map. A map is initialized for the first
  160. * `put/putAll` call, and subsequent calls add additional key/value pairs to the original map.
  161. * See {@link ReaderCreateParams#metadata} for the field documentation.
  162. */
  163. @SuppressWarnings("unchecked")
  164. public Builder putAllMetadata(Map<String, String> map) {
  165. if (this.metadata == null || this.metadata instanceof EmptyParam) {
  166. this.metadata = new HashMap<String, String>();
  167. }
  168. ((Map<String, String>) this.metadata).putAll(map);
  169. return this;
  170. }
  171. /**
  172. * Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach
  173. * to an object. This can be useful for storing additional information about the object in a
  174. * structured format. Individual keys can be unset by posting an empty value to them. All keys
  175. * can be unset by posting an empty value to {@code metadata}.
  176. */
  177. public Builder setMetadata(EmptyParam metadata) {
  178. this.metadata = metadata;
  179. return this;
  180. }
  181. /**
  182. * Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach
  183. * to an object. This can be useful for storing additional information about the object in a
  184. * structured format. Individual keys can be unset by posting an empty value to them. All keys
  185. * can be unset by posting an empty value to {@code metadata}.
  186. */
  187. public Builder setMetadata(Map<String, String> metadata) {
  188. this.metadata = metadata;
  189. return this;
  190. }
  191. /** A code generated by the reader used for registering to an account. */
  192. public Builder setRegistrationCode(String registrationCode) {
  193. this.registrationCode = registrationCode;
  194. return this;
  195. }
  196. }
  197. }