All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.stripe.param.terminal.ReaderDeleteParams Maven / Gradle / Ivy

There is a newer version: 28.2.0
Show newest version
// Generated by com.stripe.generator.entity.SdkBuilder

package com.stripe.param.terminal;

import com.google.gson.annotations.SerializedName;
import com.stripe.net.ApiRequestParams;

public class ReaderDeleteParams extends ApiRequestParams {
  /**
   * To [group
   * objects](https://stripe.com/docs/terminal/payments/connect#grouping-objects-by-connected-account)
   * on your platform account by connected account, set this parameter to the connected account ID.
   */
  @SerializedName("operator_account")
  String operatorAccount;

  private ReaderDeleteParams(String operatorAccount) {
    this.operatorAccount = operatorAccount;
  }

  public static Builder builder() {
    return new com.stripe.param.terminal.ReaderDeleteParams.Builder();
  }

  public static class Builder {
    private String operatorAccount;

    /** Finalize and obtain parameter instance from this builder. */
    public ReaderDeleteParams build() {
      return new ReaderDeleteParams(this.operatorAccount);
    }

    /**
     * To [group
     * objects](https://stripe.com/docs/terminal/payments/connect#grouping-objects-by-connected-account)
     * on your platform account by connected account, set this parameter to the connected account
     * ID.
     */
    public Builder setOperatorAccount(String operatorAccount) {
      this.operatorAccount = operatorAccount;
      return this;
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy