com.wallee.sdk.model.ShopifySubscription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wallee-java-sdk Show documentation
Show all versions of wallee-java-sdk Show documentation
The SDK for simplifying the integration with wallee API.
/**
* wallee SDK
*
* This library allows to interact with the wallee payment service.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.wallee.sdk.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.wallee.sdk.model.ShopifySubscriber;
import com.wallee.sdk.model.ShopifySubscriptionState;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.time.OffsetDateTime;
import java.util.*;
import java.time.OffsetDateTime;
/**
*
*/
@ApiModel(description = "")
public class ShopifySubscription {
@JsonProperty("createdBy")
protected Long createdBy = null;
@JsonProperty("createdOn")
protected OffsetDateTime createdOn = null;
@JsonProperty("externalId")
protected String externalId = null;
@JsonProperty("id")
protected Long id = null;
@JsonProperty("initialExecutionDate")
protected OffsetDateTime initialExecutionDate = null;
@JsonProperty("initialPaymentTransaction")
protected Long initialPaymentTransaction = null;
@JsonProperty("initialShopifyTransaction")
protected Long initialShopifyTransaction = null;
@JsonProperty("language")
protected String language = null;
@JsonProperty("linkedSpaceId")
protected Long linkedSpaceId = null;
@JsonProperty("orderRecurrenceNumber")
protected Integer orderRecurrenceNumber = null;
@JsonProperty("shop")
protected Long shop = null;
@JsonProperty("state")
protected ShopifySubscriptionState state = null;
@JsonProperty("subscriber")
protected ShopifySubscriber subscriber = null;
@JsonProperty("terminatedBy")
protected Long terminatedBy = null;
@JsonProperty("terminatedOn")
protected OffsetDateTime terminatedOn = null;
@JsonProperty("terminationRequestDate")
protected OffsetDateTime terminationRequestDate = null;
@JsonProperty("version")
protected Integer version = null;
/**
*
* @return createdBy
**/
@ApiModelProperty(value = "")
public Long getCreatedBy() {
return createdBy;
}
/**
*
* @return createdOn
**/
@ApiModelProperty(value = "")
public OffsetDateTime getCreatedOn() {
return createdOn;
}
/**
* The external id helps to identify the entity and a subsequent creation of an entity with the same ID will not create a new entity.
* @return externalId
**/
@ApiModelProperty(value = "The external id helps to identify the entity and a subsequent creation of an entity with the same ID will not create a new entity.")
public String getExternalId() {
return externalId;
}
/**
* A unique identifier for the object.
* @return id
**/
@ApiModelProperty(value = "A unique identifier for the object.")
public Long getId() {
return id;
}
/**
*
* @return initialExecutionDate
**/
@ApiModelProperty(value = "")
public OffsetDateTime getInitialExecutionDate() {
return initialExecutionDate;
}
/**
*
* @return initialPaymentTransaction
**/
@ApiModelProperty(value = "")
public Long getInitialPaymentTransaction() {
return initialPaymentTransaction;
}
/**
*
* @return initialShopifyTransaction
**/
@ApiModelProperty(value = "")
public Long getInitialShopifyTransaction() {
return initialShopifyTransaction;
}
/**
* The language that is linked to the object.
* @return language
**/
@ApiModelProperty(value = "The language that is linked to the object.")
public String getLanguage() {
return language;
}
/**
* The ID of the space this object belongs to.
* @return linkedSpaceId
**/
@ApiModelProperty(value = "The ID of the space this object belongs to.")
public Long getLinkedSpaceId() {
return linkedSpaceId;
}
/**
*
* @return orderRecurrenceNumber
**/
@ApiModelProperty(value = "")
public Integer getOrderRecurrenceNumber() {
return orderRecurrenceNumber;
}
/**
*
* @return shop
**/
@ApiModelProperty(value = "")
public Long getShop() {
return shop;
}
/**
* The object's current state.
* @return state
**/
@ApiModelProperty(value = "The object's current state.")
public ShopifySubscriptionState getState() {
return state;
}
/**
*
* @return subscriber
**/
@ApiModelProperty(value = "")
public ShopifySubscriber getSubscriber() {
return subscriber;
}
/**
*
* @return terminatedBy
**/
@ApiModelProperty(value = "")
public Long getTerminatedBy() {
return terminatedBy;
}
/**
*
* @return terminatedOn
**/
@ApiModelProperty(value = "")
public OffsetDateTime getTerminatedOn() {
return terminatedOn;
}
/**
*
* @return terminationRequestDate
**/
@ApiModelProperty(value = "")
public OffsetDateTime getTerminationRequestDate() {
return terminationRequestDate;
}
/**
* The version is used for optimistic locking and incremented whenever the object is updated.
* @return version
**/
@ApiModelProperty(value = "The version is used for optimistic locking and incremented whenever the object is updated.")
public Integer getVersion() {
return version;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ShopifySubscription shopifySubscription = (ShopifySubscription) o;
return Objects.equals(this.createdBy, shopifySubscription.createdBy) &&
Objects.equals(this.createdOn, shopifySubscription.createdOn) &&
Objects.equals(this.externalId, shopifySubscription.externalId) &&
Objects.equals(this.id, shopifySubscription.id) &&
Objects.equals(this.initialExecutionDate, shopifySubscription.initialExecutionDate) &&
Objects.equals(this.initialPaymentTransaction, shopifySubscription.initialPaymentTransaction) &&
Objects.equals(this.initialShopifyTransaction, shopifySubscription.initialShopifyTransaction) &&
Objects.equals(this.language, shopifySubscription.language) &&
Objects.equals(this.linkedSpaceId, shopifySubscription.linkedSpaceId) &&
Objects.equals(this.orderRecurrenceNumber, shopifySubscription.orderRecurrenceNumber) &&
Objects.equals(this.shop, shopifySubscription.shop) &&
Objects.equals(this.state, shopifySubscription.state) &&
Objects.equals(this.subscriber, shopifySubscription.subscriber) &&
Objects.equals(this.terminatedBy, shopifySubscription.terminatedBy) &&
Objects.equals(this.terminatedOn, shopifySubscription.terminatedOn) &&
Objects.equals(this.terminationRequestDate, shopifySubscription.terminationRequestDate) &&
Objects.equals(this.version, shopifySubscription.version);
}
@Override
public int hashCode() {
return Objects.hash(createdBy, createdOn, externalId, id, initialExecutionDate, initialPaymentTransaction, initialShopifyTransaction, language, linkedSpaceId, orderRecurrenceNumber, shop, state, subscriber, terminatedBy, terminatedOn, terminationRequestDate, version);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ShopifySubscription {\n");
sb.append(" createdBy: ").append(toIndentedString(createdBy)).append("\n");
sb.append(" createdOn: ").append(toIndentedString(createdOn)).append("\n");
sb.append(" externalId: ").append(toIndentedString(externalId)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" initialExecutionDate: ").append(toIndentedString(initialExecutionDate)).append("\n");
sb.append(" initialPaymentTransaction: ").append(toIndentedString(initialPaymentTransaction)).append("\n");
sb.append(" initialShopifyTransaction: ").append(toIndentedString(initialShopifyTransaction)).append("\n");
sb.append(" language: ").append(toIndentedString(language)).append("\n");
sb.append(" linkedSpaceId: ").append(toIndentedString(linkedSpaceId)).append("\n");
sb.append(" orderRecurrenceNumber: ").append(toIndentedString(orderRecurrenceNumber)).append("\n");
sb.append(" shop: ").append(toIndentedString(shop)).append("\n");
sb.append(" state: ").append(toIndentedString(state)).append("\n");
sb.append(" subscriber: ").append(toIndentedString(subscriber)).append("\n");
sb.append(" terminatedBy: ").append(toIndentedString(terminatedBy)).append("\n");
sb.append(" terminatedOn: ").append(toIndentedString(terminatedOn)).append("\n");
sb.append(" terminationRequestDate: ").append(toIndentedString(terminationRequestDate)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}