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

br.com.moip.resource.CaptureMethod Maven / Gradle / Ivy

There is a newer version: 4.7.6
Show newest version
package br.com.moip.resource;

public class CaptureMethod {

    private Type type;
    private String voucher;
    private String stoneId;

    public Type getType() {
        return type;
    }

    public String getVoucher() {
        return voucher;
    }

    public String getStoneId() {
        return stoneId;
    }

    private enum Type {
        MPOS;
    }

    @Override
    public String toString() {
        final StringBuilder sb = new StringBuilder("CaptureMethod{");
        sb.append("type=").append(type);
        sb.append(", voucher='").append(voucher).append('\'');
        sb.append(", stoneId='").append(stoneId).append('\'');
        sb.append('}');
        return sb.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy