Skip to content

Commit

Permalink
Merge pull request #60 from cashfree/4.1.4
Browse files Browse the repository at this point in the history
4.1.4
  • Loading branch information
suhas-cashfree committed Jun 18, 2024
2 parents 32f153a + 7d6b588 commit dd8b79f
Show file tree
Hide file tree
Showing 199 changed files with 506 additions and 507 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ Try out our interactive guides at [Cashfree Dev Studio](https://www.cashfree.com
### Installation
* Gradle Project
```bash
implementation `com.cashfree.pg.java:cashfree_pg:4.1.2`
implementation `com.cashfree.pg.java:cashfree_pg:4.1.4`
```
* Maven Project
```bash
<dependency>
<groupId>com.cashfree.pg.java</groupId>
<artifactId>cashfree_pg</artifactId>
<version>4.1.2</version>
<version>4.1.4</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ apply plugin: 'maven-publish'
apply plugin: 'signing'

group = 'com.cashfree.pg.java'
version = '4.1.2'
version = '4.1.4'

buildscript {
repositories {
Expand Down Expand Up @@ -116,7 +116,7 @@ if(hasProperty('target') && target == 'android') {

groupId 'com.cashfree.pg.java'
artifactId 'cashfree_pg'
version '4.1.2'
version '4.1.4'

from components.java

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "com.cashfree.pg.java",
name := "cashfree_pg",
version := "4.1.2",
version := "4.1.4",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 1 deletion docs/CustomerDetails.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The customer details that are necessary. Note that you can pass dummy details if

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**customerId** | **String** | A unique identifier for the customer. Use alphanumeric values only. | |
|**customerId** | **String** | A unique identifier for the customer. Use alphanumeric values only. | [optional] |
|**customerEmail** | **String** | Customer email address. | [optional] |
|**customerPhone** | **String** | Customer phone number. | |
|**customerName** | **String** | Name of the customer. | [optional] |
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>cashfree_pg</artifactId>
<packaging>jar</packaging>
<name>cashfree_pg</name>
<version>4.1.2</version>
<version>4.1.4</version>
<url>https://github.com/cashfree/cashfree-pg-sdk-java</url>
<description>Java Framework for Cashfree Payment Gateway.</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/ApiException.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* <p>ApiException class.</p>
*/
@SuppressWarnings("serial")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class ApiException extends Exception {
private int code = 0;
private Map<String, List<String>> responseHeaders = null;
Expand Down
602 changes: 301 additions & 301 deletions src/main/java/com/cashfree/Cashfree.java

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/main/java/com/cashfree/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

package com.cashfree;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
class Configuration {
public static final String VERSION = "4.1.2";
public static final String VERSION = "4.1.4";

private static Cashfree.ApiClient defaultApiClient = new Cashfree.ApiClient();

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/Pair.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

package com.cashfree;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class Pair {
private String name = "";
private String value = "";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/StringUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import java.util.Collection;
import java.util.Iterator;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class StringUtil {
/**
* Check if the given array contains the given value (with case-insensitive comparison).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/auth/ApiKeyAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.util.Map;
import java.util.List;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class ApiKeyAuth implements Authentication {
private final String location;
private final String paramName;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/auth/HttpBearerAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.util.Map;
import java.util.List;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class HttpBearerAuth implements Authentication {
private final String scheme;
private String bearerToken;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public abstract class AbstractOpenApiSchema {

// store the actual instance of the schema/object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* Adjust Vendor Balance Request
*/
@Schema(description = "Adjust Vendor Balance Request")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class AdjustVendorBalanceRequest {
public static final String SERIALIZED_NAME_TRANSFER_FROM = "transfer_from";
@SerializedName(SERIALIZED_NAME_TRANSFER_FROM)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* Adjust Vendor Balance Response
*/
@Schema(description = "Adjust Vendor Balance Response")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class AdjustVendorBalanceResponse {
public static final String SERIALIZED_NAME_SETTLEMENT_ID = "settlement_id";
@SerializedName(SERIALIZED_NAME_SETTLEMENT_ID)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/ApiError.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* Error at cashfree&#39;s server
*/
@Schema(description = "Error at cashfree's server")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class ApiError {
public static final String SERIALIZED_NAME_MESSAGE = "message";
@SerializedName(SERIALIZED_NAME_MESSAGE)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/ApiError404.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* Error when resource requested is not found
*/
@Schema(description = "Error when resource requested is not found")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class ApiError404 {
public static final String SERIALIZED_NAME_MESSAGE = "message";
@SerializedName(SERIALIZED_NAME_MESSAGE)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/ApiError409.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* duplicate request
*/
@Schema(description = "duplicate request")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class ApiError409 {
public static final String SERIALIZED_NAME_MESSAGE = "message";
@SerializedName(SERIALIZED_NAME_MESSAGE)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/ApiError502.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* Error when there is error at partner bank
*/
@Schema(description = "Error when there is error at partner bank")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class ApiError502 {
public static final String SERIALIZED_NAME_MESSAGE = "message";
@SerializedName(SERIALIZED_NAME_MESSAGE)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* App payment method
*/
@Schema(description = "App payment method")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class App {
public static final String SERIALIZED_NAME_CHANNEL = "channel";
@SerializedName(SERIALIZED_NAME_CHANNEL)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/AppPaymentMethod.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* App payment method
*/
@Schema(description = "App payment method")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class AppPaymentMethod {
public static final String SERIALIZED_NAME_APP = "app";
@SerializedName(SERIALIZED_NAME_APP)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/AuthenticationError.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* Error if api keys are wrong
*/
@Schema(description = "Error if api keys are wrong")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class AuthenticationError {
public static final String SERIALIZED_NAME_MESSAGE = "message";
@SerializedName(SERIALIZED_NAME_MESSAGE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* If preauth enabled for account you will get this body
*/
@Schema(description = "If preauth enabled for account you will get this body")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class AuthorizationInPaymentsEntity {
/**
* One of CAPTURE or VOID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* Request to capture or void transaction
*/
@Schema(description = "Request to capture or void transaction")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class AuthorizeOrderRequest {
/**
* Type of authorization to run. Can be one of &#39;CAPTURE&#39; , &#39;VOID&#39;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/BadRequestError.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* Invalid request received from client
*/
@Schema(description = "Invalid request received from client")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class BadRequestError {
public static final String SERIALIZED_NAME_MESSAGE = "message";
@SerializedName(SERIALIZED_NAME_MESSAGE)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/BalanceDetails.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
/**
* BalanceDetails
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class BalanceDetails {
public static final String SERIALIZED_NAME_MERCHANT_ID = "merchant_id";
@SerializedName(SERIALIZED_NAME_MERCHANT_ID)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/BankDetails.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
/**
* BankDetails
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class BankDetails {
public static final String SERIALIZED_NAME_ACCOUNT_NUMBER = "account_number";
@SerializedName(SERIALIZED_NAME_ACCOUNT_NUMBER)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/Banktransfer.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* Banktransfer payment method
*/
@Schema(description = "Banktransfer payment method")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class Banktransfer {
public static final String SERIALIZED_NAME_CHANNEL = "channel";
@SerializedName(SERIALIZED_NAME_CHANNEL)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* banktransfer payment method
*/
@Schema(description = "banktransfer payment method")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class BanktransferPaymentMethod {
public static final String SERIALIZED_NAME_BANKTRANSFER = "banktransfer";
@SerializedName(SERIALIZED_NAME_BANKTRANSFER)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/Card.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* Card Payment method
*/
@Schema(description = "Card Payment method")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class Card {
/**
* The channel for card payments can be \&quot;link\&quot; or \&quot;post\&quot;. Post is used for seamless OTP payments where merchant captures OTP on their own page.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/CardEMI.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* Payment method for card emi
*/
@Schema(description = "Payment method for card emi")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class CardEMI {
public static final String SERIALIZED_NAME_CHANNEL = "channel";
@SerializedName(SERIALIZED_NAME_CHANNEL)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/CardEMIPaymentMethod.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* Complete card emi payment method
*/
@Schema(description = "Complete card emi payment method")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class CardEMIPaymentMethod {
public static final String SERIALIZED_NAME_EMI = "emi";
@SerializedName(SERIALIZED_NAME_EMI)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/CardOffer.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
/**
* CardOffer
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class CardOffer {
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/CardPaymentMethod.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* The card payment object is used to make payment using either plain card number, saved card instrument id or using cryptogram
*/
@Schema(description = "The card payment object is used to make payment using either plain card number, saved card instrument id or using cryptogram ")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class CardPaymentMethod {
public static final String SERIALIZED_NAME_CARD = "card";
@SerializedName(SERIALIZED_NAME_CARD)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/CardlessEMI.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* Request body for cardless emi payment method
*/
@Schema(description = "Request body for cardless emi payment method")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class CardlessEMI {
public static final String SERIALIZED_NAME_CHANNEL = "channel";
@SerializedName(SERIALIZED_NAME_CHANNEL)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/CardlessEMIEntity.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
* cardless EMI object
*/
@Schema(description = "cardless EMI object")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class CardlessEMIEntity {
public static final String SERIALIZED_NAME_PAYMENT_METHOD = "payment_method";
@SerializedName(SERIALIZED_NAME_PAYMENT_METHOD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* cardless EMI payment method object
*/
@Schema(description = "cardless EMI payment method object")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class CardlessEMIPaymentMethod {
public static final String SERIALIZED_NAME_CARDLESS_EMI = "cardless_emi";
@SerializedName(SERIALIZED_NAME_CARDLESS_EMI)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/CardlessEMIQueries.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
* cardless EMI query object
*/
@Schema(description = "cardless EMI query object")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class CardlessEMIQueries {
public static final String SERIALIZED_NAME_ORDER_ID = "order_id";
@SerializedName(SERIALIZED_NAME_ORDER_ID)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/CashbackDetails.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* Cashback detail boject
*/
@Schema(description = "Cashback detail boject")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class CashbackDetails {
/**
* Type of discount
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/ChargesDetails.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
/**
* ChargesDetails
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-04-01T10:27:27.461284Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-18T13:25:41.657534Z[Etc/UTC]")
public class ChargesDetails {
public static final String SERIALIZED_NAME_SERVICE_CHARGES = "service_charges";
@SerializedName(SERIALIZED_NAME_SERVICE_CHARGES)
Expand Down
Loading

0 comments on commit dd8b79f

Please sign in to comment.