
cl.transbank.patpass.model.PatpassOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transbank-sdk-java Show documentation
Show all versions of transbank-sdk-java Show documentation
Tranbank API integration SDK for Java Projects
The newest version!
package cl.transbank.patpass.model;
import cl.transbank.common.IntegrationType;
import cl.transbank.model.Options;
import lombok.*;
/**
* This class represents the options for a Patpass transaction.
*/
@ToString
@AllArgsConstructor
public class PatpassOptions extends Options {
/**
* Constructs a new PatpassOptions with the specified commerce code, API key, and integration type.
* @param commerceCode The commerce code.
* @param apiKey The API key.
* @param integrationType The integration type.
*/
public PatpassOptions(
String commerceCode,
String apiKey,
IntegrationType integrationType
) {
super(commerceCode, apiKey, integrationType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy