com.cloudconvert.dto.response.OperationResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudconvert-java Show documentation
Show all versions of cloudconvert-java Show documentation
CloudConvert is an online file converter API - more than 200 different audio, video, document, ebook, archive, image, spreadsheet and presentation formats supported.
package com.cloudconvert.dto.response;
import com.cloudconvert.dto.Operation;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.Accessors;
import java.util.List;
import java.util.Map;
@Getter
@Setter
@Accessors(chain = true)
@ToString
@EqualsAndHashCode(callSuper = true)
public class OperationResponse extends Response {
/**
* Name of the operation, such as convert, optimize or capture-website.
*/
private Operation operation;
/**
* Format of the input file.
*/
private String inputFormat;
/**
* Format of the conversion result.
*/
private String outputFormat;
/**
* Name of the engine.
*/
private String engine;
/**
* Possible options for this conversion type. Available, if the include argument contains options.
*/
private List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy