-
public final class DomainDtoDomain plus verification records and status
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enumDomainDto.DomainTypeThe type of domain. SMTP or HTTP domains differ in what inboxes can be used with them. Values: hTTPINBOX,sMTPDOMAIN
-
Field Summary
Fields Modifier and Type Field Description private final OffsetDateTimecreatedAtprivate final UUIDidprivate final OffsetDateTimeupdatedAtprivate final UUIDuserIdprivate final UUIDcatchAllInboxIdprivate final List<String>dkimTokensprivate final Stringdomainprivate final List<DomainNameRecord>domainNameRecordsprivate final DomainDto.DomainTypedomainTypeprivate final BooleanisVerifiedprivate final StringverificationToken
-
Constructor Summary
Constructors Constructor Description DomainDto(OffsetDateTime createdAt, UUID id, OffsetDateTime updatedAt, UUID userId, UUID catchAllInboxId, List<String> dkimTokens, String domain, List<DomainNameRecord> domainNameRecords, DomainDto.DomainType domainType, Boolean isVerified, String verificationToken)
-
Method Summary
Modifier and Type Method Description final OffsetDateTimegetCreatedAt()final UUIDgetId()final OffsetDateTimegetUpdatedAt()final UUIDgetUserId()final UUIDgetCatchAllInboxId()final List<String>getDkimTokens()final StringgetDomain()final List<DomainNameRecord>getDomainNameRecords()final DomainDto.DomainTypegetDomainType()final BooleangetIsVerified()final StringgetVerificationToken()-
-
Constructor Detail
-
DomainDto
DomainDto(OffsetDateTime createdAt, UUID id, OffsetDateTime updatedAt, UUID userId, UUID catchAllInboxId, List<String> dkimTokens, String domain, List<DomainNameRecord> domainNameRecords, DomainDto.DomainType domainType, Boolean isVerified, String verificationToken)
- Parameters:
catchAllInboxId- The optional catch all inbox that will receive emails sent to the domain that cannot be matched.dkimTokens- Unique token DKIM tokensdomain- Custom domain namedomainNameRecords- List of DNS domain name records (C, MX, TXT) etc that you must add to the DNS server associated with your domain provider.domainType- The type of domain.isVerified- Whether domain has been verified or not.verificationToken- Verification tokens
-
-
Method Detail
-
getCreatedAt
final OffsetDateTime getCreatedAt()
-
getUpdatedAt
final OffsetDateTime getUpdatedAt()
-
getCatchAllInboxId
final UUID getCatchAllInboxId()
-
getDkimTokens
final List<String> getDkimTokens()
-
getDomainNameRecords
final List<DomainNameRecord> getDomainNameRecords()
-
getDomainType
final DomainDto.DomainType getDomainType()
-
getIsVerified
final Boolean getIsVerified()
-
getVerificationToken
final String getVerificationToken()
-
-
-
-