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

com.scayle.adminapi.model.Audience Maven / Gradle / Ivy

There is a newer version: 1.24.0
Show newest version
package com.scayle.adminapi.model;

import java.util.List;
import java.util.Map;

import com.google.gson.annotations.SerializedName;

import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class Audience implements ApiObjectInterface {
    /**
    * Audience id
    */
    @SerializedName("id")
    String id;

    /**
    * Internal name of the audience
    */
    @SerializedName("name")
    String name;

    /**
    * Internal description of the audience
    */
    @SerializedName("description")
    String description;

    /**
    * The list of company ids where the audience takes place
    */
    @SerializedName("companyIds")
    List companyIds;

    /**
    * The list of customer ids
    */
    @SerializedName("customerIds")
    List customerIds;

    /**
    * Created at date
    */
    @SerializedName("createdAt")
    String createdAt;

    /**
    * Updated at date
    */
    @SerializedName("updatedAt")
    String updatedAt;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy