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

com.cloudconvert.dto.response.OperationResponse Maven / Gradle / Ivy

Go to download

CloudConvert is an online file converter API - more than 200 different audio, video, document, ebook, archive, image, spreadsheet and presentation formats supported.

There is a newer version: 1.2.1
Show newest version
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