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

io.imast.work4j.model.execution.ExecutionsResponse Maven / Gradle / Ivy

There is a newer version: 0.0.1.PREVIEW
Show newest version
package io.imast.work4j.model.execution;

import java.util.List;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * The response structure of executions
 * 
 * @author davitp
 */
@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder(toBuilder = true)
public class ExecutionsResponse {
    
    /**
     * The set of execution identifiers to get
     */
    private List executions;
    
    /**
     * The total number of entries for query
     */
    private long total;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy