com.cloudconvert.dto.response.WebhookResponse 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.Event;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.Accessors;
import java.util.List;
@Getter
@Setter
@Accessors(chain = true)
@ToString
@EqualsAndHashCode(callSuper = true)
public class WebhookResponse extends Response {
private String id;
private String url;
private Boolean disabled;
private List events;
private Boolean failing;
private String signingSecret;
private String createdAt;
private String updatedAt;
private Links links;
@Getter
@Setter
@Accessors(chain = true)
@ToString
@EqualsAndHashCode
public static class Links {
private String self;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy