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

com.cloudconvert.resource.params.Include 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.resource.params;

import lombok.Getter;

public enum Include {

    RETRIES("retries"),
    DEPENDS_ON_TASKS("depends_on_tasks"),
    PAYLOAD("payload"),
    JOB("job"),
    OPTIONS("options"),
    ENGINE_VERSIONS("engine_versions");

    @Getter
    private final String label;

    Include(final String label) {
        this.label = label;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy