
com.twilio.rest.bulkexports.v1.export.Job Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio Show documentation
Show all versions of twilio Show documentation
Twilio Java Helper Library
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Bulkexports
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.twilio.rest.bulkexports.v1.export;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.twilio.base.Resource;
import com.twilio.exception.ApiConnectionException;
import com.twilio.exception.ApiException;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.util.Map;
import java.util.Map;
import java.util.Objects;
import lombok.ToString;
import lombok.ToString;
@JsonIgnoreProperties(ignoreUnknown = true)
@ToString
public class Job extends Resource {
private static final long serialVersionUID = 103628862500013L;
public static JobDeleter deleter(final String pathJobSid) {
return new JobDeleter(pathJobSid);
}
public static JobFetcher fetcher(final String pathJobSid) {
return new JobFetcher(pathJobSid);
}
/**
* Converts a JSON String into a Job object using the provided ObjectMapper.
*
* @param json Raw JSON String
* @param objectMapper Jackson ObjectMapper
* @return Job object represented by the provided JSON
*/
public static Job fromJson(
final String json,
final ObjectMapper objectMapper
) {
// Convert all checked exceptions to Runtime
try {
return objectMapper.readValue(json, Job.class);
} catch (final JsonMappingException | JsonParseException e) {
throw new ApiException(e.getMessage(), e);
} catch (final IOException e) {
throw new ApiConnectionException(e.getMessage(), e);
}
}
/**
* Converts a JSON InputStream into a Job object using the provided
* ObjectMapper.
*
* @param json Raw JSON InputStream
* @param objectMapper Jackson ObjectMapper
* @return Job object represented by the provided JSON
*/
public static Job fromJson(
final InputStream json,
final ObjectMapper objectMapper
) {
// Convert all checked exceptions to Runtime
try {
return objectMapper.readValue(json, Job.class);
} catch (final JsonMappingException | JsonParseException e) {
throw new ApiException(e.getMessage(), e);
} catch (final IOException e) {
throw new ApiConnectionException(e.getMessage(), e);
}
}
private final String resourceType;
private final String friendlyName;
private final Map details;
private final String startDay;
private final String endDay;
private final String jobSid;
private final String webhookUrl;
private final String webhookMethod;
private final String email;
private final URI url;
private final String jobQueuePosition;
private final String estimatedCompletionTime;
@JsonCreator
private Job(
@JsonProperty("resource_type") final String resourceType,
@JsonProperty("friendly_name") final String friendlyName,
@JsonProperty("details") final Map details,
@JsonProperty("start_day") final String startDay,
@JsonProperty("end_day") final String endDay,
@JsonProperty("job_sid") final String jobSid,
@JsonProperty("webhook_url") final String webhookUrl,
@JsonProperty("webhook_method") final String webhookMethod,
@JsonProperty("email") final String email,
@JsonProperty("url") final URI url,
@JsonProperty("job_queue_position") final String jobQueuePosition,
@JsonProperty(
"estimated_completion_time"
) final String estimatedCompletionTime
) {
this.resourceType = resourceType;
this.friendlyName = friendlyName;
this.details = details;
this.startDay = startDay;
this.endDay = endDay;
this.jobSid = jobSid;
this.webhookUrl = webhookUrl;
this.webhookMethod = webhookMethod;
this.email = email;
this.url = url;
this.jobQueuePosition = jobQueuePosition;
this.estimatedCompletionTime = estimatedCompletionTime;
}
public final String getResourceType() {
return this.resourceType;
}
public final String getFriendlyName() {
return this.friendlyName;
}
public final Map getDetails() {
return this.details;
}
public final String getStartDay() {
return this.startDay;
}
public final String getEndDay() {
return this.endDay;
}
public final String getJobSid() {
return this.jobSid;
}
public final String getWebhookUrl() {
return this.webhookUrl;
}
public final String getWebhookMethod() {
return this.webhookMethod;
}
public final String getEmail() {
return this.email;
}
public final URI getUrl() {
return this.url;
}
public final String getJobQueuePosition() {
return this.jobQueuePosition;
}
public final String getEstimatedCompletionTime() {
return this.estimatedCompletionTime;
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Job other = (Job) o;
return (
Objects.equals(resourceType, other.resourceType) &&
Objects.equals(friendlyName, other.friendlyName) &&
Objects.equals(details, other.details) &&
Objects.equals(startDay, other.startDay) &&
Objects.equals(endDay, other.endDay) &&
Objects.equals(jobSid, other.jobSid) &&
Objects.equals(webhookUrl, other.webhookUrl) &&
Objects.equals(webhookMethod, other.webhookMethod) &&
Objects.equals(email, other.email) &&
Objects.equals(url, other.url) &&
Objects.equals(jobQueuePosition, other.jobQueuePosition) &&
Objects.equals(
estimatedCompletionTime,
other.estimatedCompletionTime
)
);
}
@Override
public int hashCode() {
return Objects.hash(
resourceType,
friendlyName,
details,
startDay,
endDay,
jobSid,
webhookUrl,
webhookMethod,
email,
url,
jobQueuePosition,
estimatedCompletionTime
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy