com.mailosaur.models.BaseModel 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.Data;
/**
* The base model.
*/
public class BaseModel {
public String nullableString(String value) {
return Data.isNull(value) ? null : value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy