Skip to content

Commit

Permalink
Merge pull request #10 from cashfree/2.0.10
Browse files Browse the repository at this point in the history
2.0.10
  • Loading branch information
harshitprajapati316 authored Dec 21, 2024
2 parents 7c1624a + 3452684 commit daacc48
Show file tree
Hide file tree
Showing 103 changed files with 137 additions and 137 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ Try out our interactive guides at [Cashfree Dev Studio](https://www.cashfree.com
### Installation
* Gradle Project
```bash
implementation `com.cashfree.verification.java:cashfree_verification:2.0.1`
implementation `com.cashfree.verification.java:cashfree_verification:2.0.10`
```
* Maven Project
```bash
<dependency>
<groupId>com.cashfree.verification.java</groupId>
<artifactId>cashfree_verification</artifactId>
<version>2.0.1</version>
<version>2.0.10</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.verification.java'
version = '2.0.1'
version = '2.0.10'

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

groupId 'com.cashfree.verification.java'
artifactId 'cashfree_verification'
version '2.0.1'
version '2.0.10'

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.verification.java",
name := "cashfree_verification",
version := "2.0.1",
version := "2.0.10",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
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_verification</artifactId>
<packaging>jar</packaging>
<name>cashfree_verification</name>
<version>2.0.1</version>
<version>2.0.10</version>
<url>https://github.com/cashfree/cashfree-verification-sdk-java</url>
<description>Java Framework for Cashfree Verification.</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-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class ApiException extends Exception {
private int code = 0;
private Map<String, List<String>> responseHeaders = null;
Expand Down
64 changes: 32 additions & 32 deletions src/main/java/com/cashfree/CashfreeVrs.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-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
class Configuration {
public static final String VERSION = "2.0.1";
public static final String VERSION = "2.0.10";

private static CashfreeVrs.ApiClient defaultApiClient = new CashfreeVrs.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-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[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-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[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-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[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-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[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 @@ -52,7 +52,7 @@
* Success response for Aadhaar Masking API
*/
@Schema(description = "Success response for Aadhaar Masking API")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AadhaarMaskingResponseSchema {
public static final String SERIALIZED_NAME_STATUS = "status";
@SerializedName(SERIALIZED_NAME_STATUS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* Request body schema for Aadhaar Verification via OCR.
*/
@Schema(description = "Request body schema for Aadhaar Verification via OCR.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AadhaarOcrRequestSchema {
public static final String SERIALIZED_NAME_VERIFICATION_ID = "verification_id";
@SerializedName(SERIALIZED_NAME_VERIFICATION_ID)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* Success response for Aadhaar Verification via OCR
*/
@Schema(description = "Success response for Aadhaar Verification via OCR")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AadhaarOcrResponseSchema {
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* Find the request parameters to mask aadhaar information
*/
@Schema(description = "Find the request parameters to mask aadhaar information")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class Aadhaarmaskingrequestschema {
public static final String SERIALIZED_NAME_IMAGE = "image";
@SerializedName(SERIALIZED_NAME_IMAGE)
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-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public abstract class AbstractOpenApiSchema {

// store the actual instance of the schema/object
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/AddressDetails.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* It contains the address information of the individual.
*/
@Schema(description = "It contains the address information of the individual.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AddressDetails {
public static final String SERIALIZED_NAME_COMPLETE_ADDRESS = "complete_address";
@SerializedName(SERIALIZED_NAME_COMPLETE_ADDRESS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
* It displays the address information in individual components.
*/
@Schema(description = "It displays the address information in individual components.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AddressDetailsSplitAddress {
public static final String SERIALIZED_NAME_DISTRICT = "district";
@SerializedName(SERIALIZED_NAME_DISTRICT)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* Find the request parameters to retrieve employment infomration
*/
@Schema(description = "Find the request parameters to retrieve employment infomration")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AdvanceEmploymentRequestSchema {
public static final String SERIALIZED_NAME_VERIFICATION_ID = "verification_id";
@SerializedName(SERIALIZED_NAME_VERIFICATION_ID)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
* Success response for Get Employment Details
*/
@Schema(description = "Success response for Get Employment Details")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AdvanceEmploymentResponse {
public static final String SERIALIZED_NAME_VERIFICATION_ID = "verification_id";
@SerializedName(SERIALIZED_NAME_VERIFICATION_ID)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* It contains the information entered in the API request.
*/
@Schema(description = "It contains the information entered in the API request.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AdvanceEmploymentResponseInput {
public static final String SERIALIZED_NAME_PHONE = "phone";
@SerializedName(SERIALIZED_NAME_PHONE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
* It contains the employment details of the individual.
*/
@Schema(description = "It contains the employment details of the individual.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AdvanceEmploymentResponseRecentEmploymentDetails {
public static final String SERIALIZED_NAME_EMPLOYEE_DETAILS = "employee_details";
@SerializedName(SERIALIZED_NAME_EMPLOYEE_DETAILS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* It contains the details of the individual as an employee.
*/
@Schema(description = "It contains the details of the individual as an employee.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AdvanceEmploymentResponseRecentEmploymentDetailsEmployeeDetails {
public static final String SERIALIZED_NAME_MEMBER_ID = "member_id";
@SerializedName(SERIALIZED_NAME_MEMBER_ID)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* It contains the information found in Employees&#39; Provident Fund Organisation (EPFO)
*/
@Schema(description = "It contains the information found in Employees' Provident Fund Organisation (EPFO)")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AdvanceEmploymentResponseRecentEmploymentDetailsEmployeeDetailsEpfo {
public static final String SERIALIZED_NAME_RECENT = "recent";
@SerializedName(SERIALIZED_NAME_RECENT)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
/**
* AdvanceEmploymentResponseRecentEmploymentDetailsEmployerDetails
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AdvanceEmploymentResponseRecentEmploymentDetailsEmployerDetails {
public static final String SERIALIZED_NAME_ESTABLISHMENT_ID = "establishment_id";
@SerializedName(SERIALIZED_NAME_ESTABLISHMENT_ID)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
/**
* AdvanceEmploymentResponseRecentEmploymentDetailsEmployerDetailsPfFilingDetailsInner
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AdvanceEmploymentResponseRecentEmploymentDetailsEmployerDetailsPfFilingDetailsInner {
public static final String SERIALIZED_NAME_TOTAL_AMOUNT = "total_amount";
@SerializedName(SERIALIZED_NAME_TOTAL_AMOUNT)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* It contains the information in individual components.
*/
@Schema(description = "It contains the information in individual components.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AdvanceEmploymentResponseUanDetailsInner {
public static final String SERIALIZED_NAME_UAN = "uan";
@SerializedName(SERIALIZED_NAME_UAN)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* It contains additional information of the individual.
*/
@Schema(description = "It contains additional information of the individual.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AdvanceEmploymentResponseUanDetailsInnerAdditionalDetails {
public static final String SERIALIZED_NAME_AADHAAR = "aadhaar";
@SerializedName(SERIALIZED_NAME_AADHAAR)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* It displays the basic information of the employee.
*/
@Schema(description = "It displays the basic information of the employee.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AdvanceEmploymentResponseUanDetailsInnerBasicDetails {
public static final String SERIALIZED_NAME_GENDER = "gender";
@SerializedName(SERIALIZED_NAME_GENDER)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
* It contains the employement details of the individual.
*/
@Schema(description = "It contains the employement details of the individual.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class AdvanceEmploymentResponseUanDetailsInnerEmploymentDetails {
public static final String SERIALIZED_NAME_MEMBER_ID = "member_id";
@SerializedName(SERIALIZED_NAME_MEMBER_ID)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/BadgeDetails.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
* It contains information regarding any badges or emblems affixed to the vehicle. These badges could indicate various things such as the vehicle&#39;s model, trim level, special editions, or manufacturer-specific badges.
*/
@Schema(description = "It contains information regarding any badges or emblems affixed to the vehicle. These badges could indicate various things such as the vehicle's model, trim level, special editions, or manufacturer-specific badges.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class BadgeDetails {
public static final String SERIALIZED_NAME_BADGE_ISSUE_DATE = "badge_issue_date";
@SerializedName(SERIALIZED_NAME_BADGE_ISSUE_DATE)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/BulkPanRequestSchema.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
* Find the request parameters to verify a large number of PAN information
*/
@Schema(description = "Find the request parameters to verify a large number of PAN information")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class BulkPanRequestSchema {
public static final String SERIALIZED_NAME_BULK_VERIFICATION_ID = "bulk_verification_id";
@SerializedName(SERIALIZED_NAME_BULK_VERIFICATION_ID)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
/**
* BulkPanRequestSchemaEntriesInner
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class BulkPanRequestSchemaEntriesInner {
public static final String SERIALIZED_NAME_NAME = "name";
@SerializedName(SERIALIZED_NAME_NAME)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/CinRequestSchema.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* Find the request parameters to retrieve CIN information
*/
@Schema(description = "Find the request parameters to retrieve CIN information")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class CinRequestSchema {
public static final String SERIALIZED_NAME_VERIFICATION_ID = "verification_id";
@SerializedName(SERIALIZED_NAME_VERIFICATION_ID)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/cashfree/model/CinResponseSchema.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* Success response for retrieving CIN information
*/
@Schema(description = "Success response for retrieving CIN information")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class CinResponseSchema {
public static final String SERIALIZED_NAME_VERIFICATION_ID = "verification_id";
@SerializedName(SERIALIZED_NAME_VERIFICATION_ID)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* It displays the details of the director of the company.
*/
@Schema(description = "It displays the details of the director of the company.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-18T11:12:20.695812Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-21T07:15:37.235803Z[Etc/UTC]")
public class CinResponseSchemaDirectorDetailsInner {
public static final String SERIALIZED_NAME_DOB = "dob";
@SerializedName(SERIALIZED_NAME_DOB)
Expand Down
Loading

0 comments on commit daacc48

Please sign in to comment.