All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mailosaur.models.MessageHeader Maven / Gradle / Ivy

There is a newer version: 8.1.0
Show newest version
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