
com.dropchop.textonic.model.dto.process.ProcessDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of textonic-api Show documentation
Show all versions of textonic-api Show documentation
Dropchop's Textonic Java REST API and Client.
The newest version!
package com.dropchop.textonic.model.dto.process;
import com.dropchop.recyclone.base.api.model.base.Dto;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.SuperBuilder;
import static com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL;
/**
* @author Nikola Ivačič on 12. 08. 22.
*/
@Getter
@Setter
@SuperBuilder
@NoArgsConstructor
@JsonInclude(NON_NULL)
public class ProcessDescriptor implements Dto {
private Analysis analysis;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy