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

com.lob.model.CheckCollection Maven / Gradle / Ivy

package com.lob.model;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public class CheckCollection extends LobCollection {

    @JsonCreator
    public CheckCollection(
            @JsonProperty("data") final List data,
            @JsonProperty("count") final int count,
            @JsonProperty("object") final String object) {
        super(data, count, object);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy