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;
/**
* The MessageHeader model.
*/
public class MessageHeader extends BaseModel {
/**
* The field property.
*/
@Key
private String field;
/**
* The value property.
*/
@Key
private String value;
/**
* Get the field value.
*
* @return the field value
*/
public String field() {
return nullableString(this.field);
}
/**
* Get the value value.
*
* @return the value value
*/
public String value() {
return nullableString(this.value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy