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

io.voucherify.client.model.promotion.reponse.CreatePromotionCampaignResponse Maven / Gradle / Ivy

Go to download

Voucherify-java-sdk is a Java client (can be used in Android application as well) which was created to simplify integration with Voucherify backend (http://www.voucherify.io)

There is a newer version: 16.0.2
Show newest version
package io.voucherify.client.model.promotion.reponse;

import com.fasterxml.jackson.annotation.JsonProperty;
import io.voucherify.client.model.campaign.CampaignType;
import io.voucherify.client.model.voucher.GenerationStatus;
import io.voucherify.client.model.voucher.response.VoucherResponse;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.ToString;

import java.util.Date;
import java.util.Map;

@NoArgsConstructor(access = AccessLevel.PRIVATE)
@AllArgsConstructor(access = AccessLevel.PRIVATE)
@Getter
@ToString
public class CreatePromotionCampaignResponse {

  private String id;

  private String name;

  private String object;

  private CampaignType type;

  @JsonProperty("campaign_type")
  private String campaignType;

  private String description;

  @JsonProperty("start_date")
  private Date startDate;

  @JsonProperty("expiration_date")
  private Date expirationDate;

  private Map metadata;

  private Integer vouchersCount;

  @JsonProperty("vouchers_generation_status")
  private GenerationStatus generationStatus;

  private VoucherResponse voucher;

  private PromotionResponse promotion;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy