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

com.stripe.service.testhelpers.IssuingService Maven / Gradle / Ivy

There is a newer version: 28.1.0-beta.3
Show newest version
// File generated from our OpenAPI spec
package com.stripe.service.testhelpers;

import com.stripe.net.ApiService;
import com.stripe.net.StripeResponseGetter;

public final class IssuingService extends ApiService {
  public IssuingService(StripeResponseGetter responseGetter) {
    super(responseGetter);
  }

  public com.stripe.service.testhelpers.issuing.AuthorizationService authorizations() {
    return new com.stripe.service.testhelpers.issuing.AuthorizationService(
        this.getResponseGetter());
  }

  public com.stripe.service.testhelpers.issuing.CardService cards() {
    return new com.stripe.service.testhelpers.issuing.CardService(this.getResponseGetter());
  }

  public com.stripe.service.testhelpers.issuing.PersonalizationDesignService
      personalizationDesigns() {
    return new com.stripe.service.testhelpers.issuing.PersonalizationDesignService(
        this.getResponseGetter());
  }

  public com.stripe.service.testhelpers.issuing.TransactionService transactions() {
    return new com.stripe.service.testhelpers.issuing.TransactionService(this.getResponseGetter());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy