com.mailgun.model.domains.DomainResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailgun-java Show documentation
Show all versions of mailgun-java Show documentation
The Mailgun SDK for Java enables Java developers to work with Mailgun API
efficiently.
The newest version!
package com.mailgun.model.domains;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
import lombok.Value;
import lombok.extern.jackson.Jacksonized;
import java.util.List;
/**
* Single domain information, including credentials and DNS records.
*
* @see Domains
*/
@Value
@Jacksonized
@Builder
@JsonIgnoreProperties(ignoreUnknown = true)
public class DomainResponse {
/**
*
* Domain
*
* {@link Domain}
*/
Domain domain;
/**
*
* Result status message.
*
*/
String message;
/**
*
* receivingDnsRecords.
*
*/
@JsonProperty("receiving_dns_records")
List receivingDnsRecords;
/**
*
* Sending DNS records.
*
*/
@JsonProperty("sending_dns_records")
List sendingDnsRecords;
}