
com.mailosaur.models.MessageHeader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailosaur-java Show documentation
Show all versions of mailosaur-java Show documentation
Mailosaur Java Bindings for Email Test Automation
package com.mailosaur.models;
import com.google.api.client.util.Key;
/**
* Message header key/value pair.
*/
public class MessageHeader extends BaseModel {
/**
* Header key.
*/
@Key
private String field;
/**
* Header value.
*/
@Key
private String value;
/**
* Gets the header key.
*
* @return The header key.
*/
public String field() {
return nullableString(this.field);
}
/**
* Gets the header value.
*
* @return The header value.
*/
public String value() {
return nullableString(this.value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy