com.cloudconvert.dto.response.UserResponse 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.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.Accessors;
@Getter
@Setter
@Accessors(chain = true)
@ToString
@EqualsAndHashCode(callSuper = true)
public class UserResponse extends Response {
/**
* The ID of the user.
*/
private String id;
/**
* The username of the user.
*/
private String username;
/**
* The email address of the user.
*/
private String email;
/**
* Remaining conversion minutes.
*/
private Integer credits;
/**
* ISO8601 timestamp when the user was created.
*/
private String createdAt;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy