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

com.cloudconvert.dto.Event 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;

import com.fasterxml.jackson.annotation.JsonValue;
import lombok.Getter;

public enum Event {

    /**
     * Emitted when a new job was just created.
     */
    JOB_CREATED("job.created"),

    /**
     * A job (and all associated tasks) completed successfully. The payload includes the job as shown by the example payload on the right.
     */
    JOB_FINISHED("job.finished"),

    /**
     * A job failed.
     */
    JOB_FAILED("job.failed");

    @Getter
    @JsonValue
    private final String label;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy