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

com.mailersend.sdk.templates.TemplateDomainTotals Maven / Gradle / Ivy

/*************************************************
 * MailerSend Java SDK
 * https://github.com/mailersend/mailersend-java
 * 
 * @author MailerSend 
 * https://mailersend.com
 **************************************************/
package com.mailersend.sdk.templates;

import com.google.gson.annotations.SerializedName;

public class TemplateDomainTotals {
    
    @SerializedName("hard_bounced")
    public int hardBounced;
    
    @SerializedName("soft_bounced")
    public int softBounced;
    
    @SerializedName("sent")
    public int sent;
    
    @SerializedName("delivered")
    public int delivered;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy