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

com.tinypass.client.publisher.model.CheckoutFlow Maven / Gradle / Ivy

There is a newer version: 16.366.0
Show newest version
package com.tinypass.client.publisher.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.tinypass.client.publisher.model.PaySourceDTO;
import com.tinypass.client.publisher.model.User;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

public class CheckoutFlow {

  /* The checkout flow ID */
  private String checkoutFlowId = null;
  

  /* The name */
  private String name = null;
  

  /* The checkout flow type (\"PURCHASE\" or \"UPGRADE\") */
  private String checkoutFlowType = null;
  

  /* The description */
  private String description = null;
  

  /* The creation date */
  private Integer createDate = null;
  

    private User createBy = null;
  

  /* The update date */
  private Integer updateDate = null;
  

    private User updateBy = null;
  

  /* Whether the checkout flow is passwordless */
  private Boolean isPasswordless = null;
  

  /* Whether Single Step is enabled */
  private Boolean isSingleStepEnabled = null;
  

  /* Whether Auto Detect is email */
  private Boolean isAutoDetectEmail = null;
  

  /* Whether checkout JS modules are configured */
  private Boolean isCustomCheckoutModulesEnabled = null;
  

  /* Whether the object is deleted */
  private Boolean deleted = null;
  

    private List paySources = new ArrayList();
  

    private List inlineCheckoutModules = new ArrayList();
  

    private List modalCheckoutModules = new ArrayList();
  


  public String getCheckoutFlowId() {
    return checkoutFlowId;
  }
  public void setCheckoutFlowId(String checkoutFlowId) {
    this.checkoutFlowId = checkoutFlowId;
  }


  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }


  public String getCheckoutFlowType() {
    return checkoutFlowType;
  }
  public void setCheckoutFlowType(String checkoutFlowType) {
    this.checkoutFlowType = checkoutFlowType;
  }


  public String getDescription() {
    return description;
  }
  public void setDescription(String description) {
    this.description = description;
  }


  public Integer getCreateDate() {
    return createDate;
  }
  public void setCreateDate(Integer createDate) {
    this.createDate = createDate;
  }


  public User getCreateBy() {
    return createBy;
  }
  public void setCreateBy(User createBy) {
    this.createBy = createBy;
  }


  public Integer getUpdateDate() {
    return updateDate;
  }
  public void setUpdateDate(Integer updateDate) {
    this.updateDate = updateDate;
  }


  public User getUpdateBy() {
    return updateBy;
  }
  public void setUpdateBy(User updateBy) {
    this.updateBy = updateBy;
  }


  public Boolean getIsPasswordless() {
    return isPasswordless;
  }
  public void setIsPasswordless(Boolean isPasswordless) {
    this.isPasswordless = isPasswordless;
  }


  public Boolean getIsSingleStepEnabled() {
    return isSingleStepEnabled;
  }
  public void setIsSingleStepEnabled(Boolean isSingleStepEnabled) {
    this.isSingleStepEnabled = isSingleStepEnabled;
  }


  public Boolean getIsAutoDetectEmail() {
    return isAutoDetectEmail;
  }
  public void setIsAutoDetectEmail(Boolean isAutoDetectEmail) {
    this.isAutoDetectEmail = isAutoDetectEmail;
  }


  public Boolean getIsCustomCheckoutModulesEnabled() {
    return isCustomCheckoutModulesEnabled;
  }
  public void setIsCustomCheckoutModulesEnabled(Boolean isCustomCheckoutModulesEnabled) {
    this.isCustomCheckoutModulesEnabled = isCustomCheckoutModulesEnabled;
  }


  public Boolean getDeleted() {
    return deleted;
  }
  public void setDeleted(Boolean deleted) {
    this.deleted = deleted;
  }


  public List getPaySources() {
    return paySources;
  }
  public void setPaySources(List paySources) {
    this.paySources = paySources;
  }


  public List getInlineCheckoutModules() {
    return inlineCheckoutModules;
  }
  public void setInlineCheckoutModules(List inlineCheckoutModules) {
    this.inlineCheckoutModules = inlineCheckoutModules;
  }


  public List getModalCheckoutModules() {
    return modalCheckoutModules;
  }
  public void setModalCheckoutModules(List modalCheckoutModules) {
    this.modalCheckoutModules = modalCheckoutModules;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class CheckoutFlow {\n");
    sb.append("  checkoutFlowId: ").append(checkoutFlowId).append("\n");
    sb.append("  name: ").append(name).append("\n");
    sb.append("  checkoutFlowType: ").append(checkoutFlowType).append("\n");
    sb.append("  description: ").append(description).append("\n");
    sb.append("  createDate: ").append(createDate).append("\n");
    sb.append("  createBy: ").append(createBy).append("\n");
    sb.append("  updateDate: ").append(updateDate).append("\n");
    sb.append("  updateBy: ").append(updateBy).append("\n");
    sb.append("  isPasswordless: ").append(isPasswordless).append("\n");
    sb.append("  isSingleStepEnabled: ").append(isSingleStepEnabled).append("\n");
    sb.append("  isAutoDetectEmail: ").append(isAutoDetectEmail).append("\n");
    sb.append("  isCustomCheckoutModulesEnabled: ").append(isCustomCheckoutModulesEnabled).append("\n");
    sb.append("  deleted: ").append(deleted).append("\n");
    sb.append("  paySources: ").append(paySources).append("\n");
    sb.append("  inlineCheckoutModules: ").append(inlineCheckoutModules).append("\n");
    sb.append("  modalCheckoutModules: ").append(modalCheckoutModules).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy