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

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

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