com.checkout.accounts.Capabilities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of checkout-sdk-java Show documentation
Show all versions of checkout-sdk-java Show documentation
Checkout SDK for Java https://checkout.com
package com.checkout.accounts;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data
@AllArgsConstructor
public final class Capabilities {
private Payments payments;
private Payouts payouts;
@Data
public static class Payments {
private boolean available;
private boolean enabled;
}
@Data
public static class Payouts {
private boolean available;
private boolean enabled;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy