decentroinkyc

package module
v1.0.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 29, 2023 License: MIT Imports: 23 Imported by: 0

README

decentroinkyc - Decentro's Go SDK

KYC & Onboarding

For more information, please visit https://decentro.tech

Installation

Add to your project:

go get github.com/decentro-in/decentro-in-kyc-sdk-go

Getting Started

package main

import (
    "fmt"
    "os"
    decentroinkyc "github.com/decentro-in/decentro-in-kyc-sdk-go"
)

func main() {
    configuration := decentroinkyc.NewConfiguration()
    configuration.SetClientId("CLIENT_ID")
    configuration.SetClientSecret("CLIENT_SECRET")
    configuration.SetModuleSecret("MODULE_SECRET")
    client := decentroinkyc.NewAPIClient(configuration)

    request := client.KYCApi.CheckImageQuality(
        "referenceId_example",
        true,
        "consentPurpose_example",
    )
    request.Image(os.NewFile(1234, "some_file"))
    request.QualityParameter("qualityParameter_example")
    request.ImageUrl("imageUrl_example")
    
    resp, httpRes, err := request.Execute()

    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `KYCApi.CheckImageQuality``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", httpRes)
    }
    // response from `CheckImageQuality`: CheckImageQualityResponse
    fmt.Fprintf(os.Stdout, "Response from `KYCApi.CheckImageQuality`: %v\n", resp)
    fmt.Fprintf(os.Stdout, "Response from `CheckImageQualityResponse.CheckImageQuality.DecentroTxnId`: %v\n", *resp.DecentroTxnId)
    fmt.Fprintf(os.Stdout, "Response from `CheckImageQualityResponse.CheckImageQuality.Status`: %v\n", *resp.Status)
    fmt.Fprintf(os.Stdout, "Response from `CheckImageQualityResponse.CheckImageQuality.ResponseCode`: %v\n", *resp.ResponseCode)
    fmt.Fprintf(os.Stdout, "Response from `CheckImageQualityResponse.CheckImageQuality.Message`: %v\n", *resp.Message)
    fmt.Fprintf(os.Stdout, "Response from `CheckImageQualityResponse.CheckImageQuality.Data`: %v\n", *resp.Data)
}

Documentation for API Endpoints

All URIs are relative to https://in.staging.decentro.tech

Class Method HTTP request Description
KYCApi CheckImageQuality Post /v2/kyc/forensics/image_quality Image Quality Check
KYCApi CheckPhotocopy Post /v2/kyc/forensics/photocopy_check Photocopy Check
KYCApi CheckVideoLiveness Post /v2/kyc/forensics/video_liveness Liveness Check
KYCApi ClassifyDocument Post /v2/kyc/document_classification ID Classification
KYCApi ExtractText Post /kyc/scan_extract/ocr Scan & Extract
KYCApi MaskAadhaarUid Post /v2/kyc/identities/mask_aadhaar_uid Aadhaar Masking
KYCApi MatchFace Post /v2/kyc/forensics/face_match Face Match
KYCApi Validate Post /kyc/public_registry/validate Validate
AadhaarXmlApi GenerateOtp Post /v2/kyc/aadhaar_connect/otp Generate OTP
AadhaarXmlApi InitiateSession Post /v2/kyc/aadhaar_connect Initiate Session
AadhaarXmlApi ReloadCaptcha Post /v2/kyc/aadhaar_connect/captcha/reload Reload Captcha
AadhaarXmlApi ValidateOtp Post /v2/kyc/aadhaar_connect/otp/validate Validate OTP
DigilockerApi DownloadFile Post /v2/kyc/sso/digilocker/{initial_decentro_txn_id}/file/download Download File
DigilockerApi EAadhaar Post /v2/kyc/sso/digilocker/{initial_decentro_txn_id}/eaadhaar eAadhaar
DigilockerApi FileData Post /v2/kyc/sso/digilocker/{initial_decentro_txn_id}/file File Data
DigilockerApi GenerateAccessToken Post /v2/kyc/sso/digilocker/{initial_decentro_txn_id}/token Access Token
DigilockerApi InitiateSession Post /v2/kyc/sso/digilocker/session Initiate Session
DigilockerApi IssuedFiles Post /v2/kyc/sso/digilocker/{initial_decentro_txn_id}/files/issued Issued Files
DigilockerApi PullFile Post /v2/kyc/sso/digilocker/{initial_decentro_txn_id}/file/pull Pull File
DigilockerApi RevokeToken Delete /v2/kyc/sso/digilocker/session/{initial_decentro_txn_id} Revoke Token
UpgradedAadhaarXmlApi GenerateOtp Post /v2/kyc/aadhaar/otp Generate OTP
UpgradedAadhaarXmlApi ValidateOtp Post /v2/kyc/aadhaar/otp/validate Validate OTP

Documentation For Models

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	KYCApi *KYCApiService

	AadhaarXmlApi *AadhaarXmlApiService

	DigilockerApi *DigilockerApiService

	UpgradedAadhaarXmlApi *UpgradedAadhaarXmlApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the decentro-in-kyc API v1.0.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type AadhaarXmlApiGenerateOtpRequest

type AadhaarXmlApiGenerateOtpRequest struct {
	ApiService *AadhaarXmlApiService
	// contains filtered or unexported fields
}

func (AadhaarXmlApiGenerateOtpRequest) Execute

type AadhaarXmlApiInitiateSessionRequest

type AadhaarXmlApiInitiateSessionRequest struct {
	ApiService *AadhaarXmlApiService
	// contains filtered or unexported fields
}

func (AadhaarXmlApiInitiateSessionRequest) Execute

type AadhaarXmlApiReloadCaptchaRequest

type AadhaarXmlApiReloadCaptchaRequest struct {
	ApiService *AadhaarXmlApiService
	// contains filtered or unexported fields
}

func (AadhaarXmlApiReloadCaptchaRequest) Execute

type AadhaarXmlApiService

type AadhaarXmlApiService service

AadhaarXmlApiService AadhaarXmlApi service

func (*AadhaarXmlApiService) GenerateOtp

func (a *AadhaarXmlApiService) GenerateOtp(aadhaarxmlGenerateOtpRequest AadhaarxmlGenerateOtpRequest) AadhaarXmlApiGenerateOtpRequest

GenerateOtp Generate OTP

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param aadhaarxmlGenerateOtpRequest
@return AadhaarXmlApiGenerateOtpRequest

func (*AadhaarXmlApiService) GenerateOtpExecute

Execute executes the request

@return AadhaarxmlGenerateOtpResponse

func (*AadhaarXmlApiService) InitiateSession

func (a *AadhaarXmlApiService) InitiateSession(aadhaarxmlInitiateSessionRequest AadhaarxmlInitiateSessionRequest) AadhaarXmlApiInitiateSessionRequest

InitiateSession Initiate Session

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param aadhaarxmlInitiateSessionRequest
@return AadhaarXmlApiInitiateSessionRequest

func (*AadhaarXmlApiService) InitiateSessionExecute

Execute executes the request

@return AadhaarxmlInitiateSessionResponse

func (*AadhaarXmlApiService) ReloadCaptcha

func (a *AadhaarXmlApiService) ReloadCaptcha(aadhaarxmlReloadCaptchaRequest AadhaarxmlReloadCaptchaRequest) AadhaarXmlApiReloadCaptchaRequest

ReloadCaptcha Reload Captcha

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param aadhaarxmlReloadCaptchaRequest
@return AadhaarXmlApiReloadCaptchaRequest

func (*AadhaarXmlApiService) ReloadCaptchaExecute

Execute executes the request

@return AadhaarxmlReloadCaptchaResponse

func (*AadhaarXmlApiService) ValidateOtp

func (a *AadhaarXmlApiService) ValidateOtp(aadhaarxmlValidateOtpRequest AadhaarxmlValidateOtpRequest) AadhaarXmlApiValidateOtpRequest

ValidateOtp Validate OTP

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param aadhaarxmlValidateOtpRequest
@return AadhaarXmlApiValidateOtpRequest

func (*AadhaarXmlApiService) ValidateOtpExecute

Execute executes the request

@return AadhaarxmlValidateOtpResponse

type AadhaarXmlApiValidateOtpRequest

type AadhaarXmlApiValidateOtpRequest struct {
	ApiService *AadhaarXmlApiService
	// contains filtered or unexported fields
}

func (AadhaarXmlApiValidateOtpRequest) Execute

type AadhaarxmlGenerateOtp400Response added in v1.0.1

type AadhaarxmlGenerateOtp400Response struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Message       *string `json:"message,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	ResponseKey   *string `json:"responseKey,omitempty"`
	Status        *string `json:"status,omitempty"`
}

AadhaarxmlGenerateOtp400Response struct for AadhaarxmlGenerateOtp400Response

func NewAadhaarxmlGenerateOtp400Response added in v1.0.1

func NewAadhaarxmlGenerateOtp400Response() *AadhaarxmlGenerateOtp400Response

NewAadhaarxmlGenerateOtp400Response instantiates a new AadhaarxmlGenerateOtp400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlGenerateOtp400ResponseWithDefaults added in v1.0.1

func NewAadhaarxmlGenerateOtp400ResponseWithDefaults() *AadhaarxmlGenerateOtp400Response

NewAadhaarxmlGenerateOtp400ResponseWithDefaults instantiates a new AadhaarxmlGenerateOtp400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlGenerateOtp400Response) GetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtp400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtp400Response) GetMessage added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtp400Response) GetMessageOk added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtp400Response) GetResponseCode added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtp400Response) GetResponseCodeOk added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtp400Response) GetResponseKey added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtp400Response) GetResponseKeyOk added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtp400Response) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtp400Response) GetStatusOk added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtp400Response) HasDecentroTxnId added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*AadhaarxmlGenerateOtp400Response) HasMessage added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AadhaarxmlGenerateOtp400Response) HasResponseCode added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*AadhaarxmlGenerateOtp400Response) HasResponseKey added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*AadhaarxmlGenerateOtp400Response) HasStatus added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (AadhaarxmlGenerateOtp400Response) MarshalJSON added in v1.0.1

func (o AadhaarxmlGenerateOtp400Response) MarshalJSON() ([]byte, error)

func (*AadhaarxmlGenerateOtp400Response) SetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*AadhaarxmlGenerateOtp400Response) SetMessage added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*AadhaarxmlGenerateOtp400Response) SetResponseCode added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*AadhaarxmlGenerateOtp400Response) SetResponseKey added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*AadhaarxmlGenerateOtp400Response) SetStatus added in v1.0.1

func (o *AadhaarxmlGenerateOtp400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type AadhaarxmlGenerateOtpRequest

type AadhaarxmlGenerateOtpRequest struct {
	ReferenceId             *string `json:"reference_id,omitempty"`
	Consent                 *bool   `json:"consent,omitempty"`
	Purpose                 *string `json:"purpose,omitempty"`
	InitiationTransactionId *string `json:"initiation_transaction_id,omitempty"`
	AadhaarNumber           *string `json:"aadhaar_number,omitempty"`
	Captcha                 *string `json:"captcha,omitempty"`
}

AadhaarxmlGenerateOtpRequest struct for AadhaarxmlGenerateOtpRequest

func NewAadhaarxmlGenerateOtpRequest

func NewAadhaarxmlGenerateOtpRequest() *AadhaarxmlGenerateOtpRequest

NewAadhaarxmlGenerateOtpRequest instantiates a new AadhaarxmlGenerateOtpRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlGenerateOtpRequestWithDefaults

func NewAadhaarxmlGenerateOtpRequestWithDefaults() *AadhaarxmlGenerateOtpRequest

NewAadhaarxmlGenerateOtpRequestWithDefaults instantiates a new AadhaarxmlGenerateOtpRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlGenerateOtpRequest) GetAadhaarNumber

func (o *AadhaarxmlGenerateOtpRequest) GetAadhaarNumber() string

GetAadhaarNumber returns the AadhaarNumber field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtpRequest) GetAadhaarNumberOk

func (o *AadhaarxmlGenerateOtpRequest) GetAadhaarNumberOk() (*string, bool)

GetAadhaarNumberOk returns a tuple with the AadhaarNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtpRequest) GetCaptcha

func (o *AadhaarxmlGenerateOtpRequest) GetCaptcha() string

GetCaptcha returns the Captcha field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtpRequest) GetCaptchaOk

func (o *AadhaarxmlGenerateOtpRequest) GetCaptchaOk() (*string, bool)

GetCaptchaOk returns a tuple with the Captcha field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtpRequest) GetConsent

func (o *AadhaarxmlGenerateOtpRequest) GetConsent() bool

GetConsent returns the Consent field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtpRequest) GetConsentOk

func (o *AadhaarxmlGenerateOtpRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtpRequest) GetInitiationTransactionId

func (o *AadhaarxmlGenerateOtpRequest) GetInitiationTransactionId() string

GetInitiationTransactionId returns the InitiationTransactionId field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtpRequest) GetInitiationTransactionIdOk

func (o *AadhaarxmlGenerateOtpRequest) GetInitiationTransactionIdOk() (*string, bool)

GetInitiationTransactionIdOk returns a tuple with the InitiationTransactionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtpRequest) GetPurpose

func (o *AadhaarxmlGenerateOtpRequest) GetPurpose() string

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtpRequest) GetPurposeOk

func (o *AadhaarxmlGenerateOtpRequest) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtpRequest) GetReferenceId

func (o *AadhaarxmlGenerateOtpRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtpRequest) GetReferenceIdOk

func (o *AadhaarxmlGenerateOtpRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtpRequest) HasAadhaarNumber

func (o *AadhaarxmlGenerateOtpRequest) HasAadhaarNumber() bool

HasAadhaarNumber returns a boolean if a field has been set.

func (*AadhaarxmlGenerateOtpRequest) HasCaptcha

func (o *AadhaarxmlGenerateOtpRequest) HasCaptcha() bool

HasCaptcha returns a boolean if a field has been set.

func (*AadhaarxmlGenerateOtpRequest) HasConsent

func (o *AadhaarxmlGenerateOtpRequest) HasConsent() bool

HasConsent returns a boolean if a field has been set.

func (*AadhaarxmlGenerateOtpRequest) HasInitiationTransactionId

func (o *AadhaarxmlGenerateOtpRequest) HasInitiationTransactionId() bool

HasInitiationTransactionId returns a boolean if a field has been set.

func (*AadhaarxmlGenerateOtpRequest) HasPurpose

func (o *AadhaarxmlGenerateOtpRequest) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (*AadhaarxmlGenerateOtpRequest) HasReferenceId

func (o *AadhaarxmlGenerateOtpRequest) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (AadhaarxmlGenerateOtpRequest) MarshalJSON

func (o AadhaarxmlGenerateOtpRequest) MarshalJSON() ([]byte, error)

func (*AadhaarxmlGenerateOtpRequest) SetAadhaarNumber

func (o *AadhaarxmlGenerateOtpRequest) SetAadhaarNumber(v string)

SetAadhaarNumber gets a reference to the given string and assigns it to the AadhaarNumber field.

func (*AadhaarxmlGenerateOtpRequest) SetCaptcha

func (o *AadhaarxmlGenerateOtpRequest) SetCaptcha(v string)

SetCaptcha gets a reference to the given string and assigns it to the Captcha field.

func (*AadhaarxmlGenerateOtpRequest) SetConsent

func (o *AadhaarxmlGenerateOtpRequest) SetConsent(v bool)

SetConsent gets a reference to the given bool and assigns it to the Consent field.

func (*AadhaarxmlGenerateOtpRequest) SetInitiationTransactionId

func (o *AadhaarxmlGenerateOtpRequest) SetInitiationTransactionId(v string)

SetInitiationTransactionId gets a reference to the given string and assigns it to the InitiationTransactionId field.

func (*AadhaarxmlGenerateOtpRequest) SetPurpose

func (o *AadhaarxmlGenerateOtpRequest) SetPurpose(v string)

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*AadhaarxmlGenerateOtpRequest) SetReferenceId

func (o *AadhaarxmlGenerateOtpRequest) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

type AadhaarxmlGenerateOtpResponse added in v1.0.1

type AadhaarxmlGenerateOtpResponse struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Status        *string `json:"status,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	Message       *string `json:"message,omitempty"`
	ResponseKey   *string `json:"responseKey,omitempty"`
}

AadhaarxmlGenerateOtpResponse struct for AadhaarxmlGenerateOtpResponse

func NewAadhaarxmlGenerateOtpResponse added in v1.0.1

func NewAadhaarxmlGenerateOtpResponse() *AadhaarxmlGenerateOtpResponse

NewAadhaarxmlGenerateOtpResponse instantiates a new AadhaarxmlGenerateOtpResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlGenerateOtpResponseWithDefaults added in v1.0.1

func NewAadhaarxmlGenerateOtpResponseWithDefaults() *AadhaarxmlGenerateOtpResponse

NewAadhaarxmlGenerateOtpResponseWithDefaults instantiates a new AadhaarxmlGenerateOtpResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlGenerateOtpResponse) GetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtpResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtpResponse) GetMessage added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtpResponse) GetMessageOk added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtpResponse) GetResponseCode added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtpResponse) GetResponseCodeOk added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtpResponse) GetResponseKey added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtpResponse) GetResponseKeyOk added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtpResponse) GetStatus added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*AadhaarxmlGenerateOtpResponse) GetStatusOk added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlGenerateOtpResponse) HasDecentroTxnId added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*AadhaarxmlGenerateOtpResponse) HasMessage added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AadhaarxmlGenerateOtpResponse) HasResponseCode added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*AadhaarxmlGenerateOtpResponse) HasResponseKey added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*AadhaarxmlGenerateOtpResponse) HasStatus added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (AadhaarxmlGenerateOtpResponse) MarshalJSON added in v1.0.1

func (o AadhaarxmlGenerateOtpResponse) MarshalJSON() ([]byte, error)

func (*AadhaarxmlGenerateOtpResponse) SetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*AadhaarxmlGenerateOtpResponse) SetMessage added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*AadhaarxmlGenerateOtpResponse) SetResponseCode added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*AadhaarxmlGenerateOtpResponse) SetResponseKey added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*AadhaarxmlGenerateOtpResponse) SetStatus added in v1.0.1

func (o *AadhaarxmlGenerateOtpResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type AadhaarxmlInitiateSession400Response added in v1.0.1

type AadhaarxmlInitiateSession400Response struct {
	Data          *AadhaarxmlInitiateSession400ResponseData `json:"data,omitempty"`
	DecentroTxnId *string                                   `json:"decentroTxnId,omitempty"`
	Message       *string                                   `json:"message,omitempty"`
	ResponseCode  *string                                   `json:"responseCode,omitempty"`
	ResponseKey   *string                                   `json:"responseKey,omitempty"`
	Status        *string                                   `json:"status,omitempty"`
}

AadhaarxmlInitiateSession400Response struct for AadhaarxmlInitiateSession400Response

func NewAadhaarxmlInitiateSession400Response added in v1.0.1

func NewAadhaarxmlInitiateSession400Response() *AadhaarxmlInitiateSession400Response

NewAadhaarxmlInitiateSession400Response instantiates a new AadhaarxmlInitiateSession400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlInitiateSession400ResponseWithDefaults added in v1.0.1

func NewAadhaarxmlInitiateSession400ResponseWithDefaults() *AadhaarxmlInitiateSession400Response

NewAadhaarxmlInitiateSession400ResponseWithDefaults instantiates a new AadhaarxmlInitiateSession400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlInitiateSession400Response) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSession400Response) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSession400Response) GetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSession400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSession400Response) GetMessage added in v1.0.1

GetMessage returns the Message field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSession400Response) GetMessageOk added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSession400Response) GetResponseCode added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSession400Response) GetResponseCodeOk added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSession400Response) GetResponseKey added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSession400Response) GetResponseKeyOk added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSession400Response) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSession400Response) GetStatusOk added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSession400Response) HasData added in v1.0.1

HasData returns a boolean if a field has been set.

func (*AadhaarxmlInitiateSession400Response) HasDecentroTxnId added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*AadhaarxmlInitiateSession400Response) HasMessage added in v1.0.1

HasMessage returns a boolean if a field has been set.

func (*AadhaarxmlInitiateSession400Response) HasResponseCode added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*AadhaarxmlInitiateSession400Response) HasResponseKey added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*AadhaarxmlInitiateSession400Response) HasStatus added in v1.0.1

HasStatus returns a boolean if a field has been set.

func (AadhaarxmlInitiateSession400Response) MarshalJSON added in v1.0.1

func (o AadhaarxmlInitiateSession400Response) MarshalJSON() ([]byte, error)

func (*AadhaarxmlInitiateSession400Response) SetData added in v1.0.1

SetData gets a reference to the given AadhaarxmlInitiateSession400ResponseData and assigns it to the Data field.

func (*AadhaarxmlInitiateSession400Response) SetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*AadhaarxmlInitiateSession400Response) SetMessage added in v1.0.1

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*AadhaarxmlInitiateSession400Response) SetResponseCode added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*AadhaarxmlInitiateSession400Response) SetResponseKey added in v1.0.1

func (o *AadhaarxmlInitiateSession400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*AadhaarxmlInitiateSession400Response) SetStatus added in v1.0.1

SetStatus gets a reference to the given string and assigns it to the Status field.

type AadhaarxmlInitiateSession400ResponseData added in v1.0.1

type AadhaarxmlInitiateSession400ResponseData struct {
	CaptchaImage *string `json:"captchaImage,omitempty"`
}

AadhaarxmlInitiateSession400ResponseData struct for AadhaarxmlInitiateSession400ResponseData

func NewAadhaarxmlInitiateSession400ResponseData added in v1.0.1

func NewAadhaarxmlInitiateSession400ResponseData() *AadhaarxmlInitiateSession400ResponseData

NewAadhaarxmlInitiateSession400ResponseData instantiates a new AadhaarxmlInitiateSession400ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlInitiateSession400ResponseDataWithDefaults added in v1.0.1

func NewAadhaarxmlInitiateSession400ResponseDataWithDefaults() *AadhaarxmlInitiateSession400ResponseData

NewAadhaarxmlInitiateSession400ResponseDataWithDefaults instantiates a new AadhaarxmlInitiateSession400ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlInitiateSession400ResponseData) GetCaptchaImage added in v1.0.1

func (o *AadhaarxmlInitiateSession400ResponseData) GetCaptchaImage() string

GetCaptchaImage returns the CaptchaImage field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSession400ResponseData) GetCaptchaImageOk added in v1.0.1

func (o *AadhaarxmlInitiateSession400ResponseData) GetCaptchaImageOk() (*string, bool)

GetCaptchaImageOk returns a tuple with the CaptchaImage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSession400ResponseData) HasCaptchaImage added in v1.0.1

func (o *AadhaarxmlInitiateSession400ResponseData) HasCaptchaImage() bool

HasCaptchaImage returns a boolean if a field has been set.

func (AadhaarxmlInitiateSession400ResponseData) MarshalJSON added in v1.0.1

func (*AadhaarxmlInitiateSession400ResponseData) SetCaptchaImage added in v1.0.1

func (o *AadhaarxmlInitiateSession400ResponseData) SetCaptchaImage(v string)

SetCaptchaImage gets a reference to the given string and assigns it to the CaptchaImage field.

type AadhaarxmlInitiateSessionRequest

type AadhaarxmlInitiateSessionRequest struct {
	ReferenceId *string `json:"reference_id,omitempty"`
	Consent     *bool   `json:"consent,omitempty"`
	Purpose     *string `json:"purpose,omitempty"`
}

AadhaarxmlInitiateSessionRequest struct for AadhaarxmlInitiateSessionRequest

func NewAadhaarxmlInitiateSessionRequest

func NewAadhaarxmlInitiateSessionRequest() *AadhaarxmlInitiateSessionRequest

NewAadhaarxmlInitiateSessionRequest instantiates a new AadhaarxmlInitiateSessionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlInitiateSessionRequestWithDefaults

func NewAadhaarxmlInitiateSessionRequestWithDefaults() *AadhaarxmlInitiateSessionRequest

NewAadhaarxmlInitiateSessionRequestWithDefaults instantiates a new AadhaarxmlInitiateSessionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlInitiateSessionRequest) GetConsent

func (o *AadhaarxmlInitiateSessionRequest) GetConsent() bool

GetConsent returns the Consent field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSessionRequest) GetConsentOk

func (o *AadhaarxmlInitiateSessionRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSessionRequest) GetPurpose

func (o *AadhaarxmlInitiateSessionRequest) GetPurpose() string

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSessionRequest) GetPurposeOk

func (o *AadhaarxmlInitiateSessionRequest) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSessionRequest) GetReferenceId

func (o *AadhaarxmlInitiateSessionRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSessionRequest) GetReferenceIdOk

func (o *AadhaarxmlInitiateSessionRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSessionRequest) HasConsent

func (o *AadhaarxmlInitiateSessionRequest) HasConsent() bool

HasConsent returns a boolean if a field has been set.

func (*AadhaarxmlInitiateSessionRequest) HasPurpose

func (o *AadhaarxmlInitiateSessionRequest) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (*AadhaarxmlInitiateSessionRequest) HasReferenceId

func (o *AadhaarxmlInitiateSessionRequest) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (AadhaarxmlInitiateSessionRequest) MarshalJSON

func (o AadhaarxmlInitiateSessionRequest) MarshalJSON() ([]byte, error)

func (*AadhaarxmlInitiateSessionRequest) SetConsent

func (o *AadhaarxmlInitiateSessionRequest) SetConsent(v bool)

SetConsent gets a reference to the given bool and assigns it to the Consent field.

func (*AadhaarxmlInitiateSessionRequest) SetPurpose

func (o *AadhaarxmlInitiateSessionRequest) SetPurpose(v string)

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*AadhaarxmlInitiateSessionRequest) SetReferenceId

func (o *AadhaarxmlInitiateSessionRequest) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

type AadhaarxmlInitiateSessionResponse added in v1.0.1

type AadhaarxmlInitiateSessionResponse struct {
	DecentroTxnId *string                                `json:"decentroTxnId,omitempty"`
	Status        *string                                `json:"status,omitempty"`
	ResponseCode  *string                                `json:"responseCode,omitempty"`
	Message       *string                                `json:"message,omitempty"`
	Data          *AadhaarxmlInitiateSessionResponseData `json:"data,omitempty"`
	ResponseKey   *string                                `json:"responseKey,omitempty"`
}

AadhaarxmlInitiateSessionResponse struct for AadhaarxmlInitiateSessionResponse

func NewAadhaarxmlInitiateSessionResponse added in v1.0.1

func NewAadhaarxmlInitiateSessionResponse() *AadhaarxmlInitiateSessionResponse

NewAadhaarxmlInitiateSessionResponse instantiates a new AadhaarxmlInitiateSessionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlInitiateSessionResponseWithDefaults added in v1.0.1

func NewAadhaarxmlInitiateSessionResponseWithDefaults() *AadhaarxmlInitiateSessionResponse

NewAadhaarxmlInitiateSessionResponseWithDefaults instantiates a new AadhaarxmlInitiateSessionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlInitiateSessionResponse) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSessionResponse) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSessionResponse) GetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSessionResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSessionResponse) GetMessage added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSessionResponse) GetMessageOk added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSessionResponse) GetResponseCode added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSessionResponse) GetResponseCodeOk added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSessionResponse) GetResponseKey added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSessionResponse) GetResponseKeyOk added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSessionResponse) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSessionResponse) GetStatusOk added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSessionResponse) HasData added in v1.0.1

HasData returns a boolean if a field has been set.

func (*AadhaarxmlInitiateSessionResponse) HasDecentroTxnId added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*AadhaarxmlInitiateSessionResponse) HasMessage added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AadhaarxmlInitiateSessionResponse) HasResponseCode added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*AadhaarxmlInitiateSessionResponse) HasResponseKey added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*AadhaarxmlInitiateSessionResponse) HasStatus added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (AadhaarxmlInitiateSessionResponse) MarshalJSON added in v1.0.1

func (o AadhaarxmlInitiateSessionResponse) MarshalJSON() ([]byte, error)

func (*AadhaarxmlInitiateSessionResponse) SetData added in v1.0.1

SetData gets a reference to the given AadhaarxmlInitiateSessionResponseData and assigns it to the Data field.

func (*AadhaarxmlInitiateSessionResponse) SetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*AadhaarxmlInitiateSessionResponse) SetMessage added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*AadhaarxmlInitiateSessionResponse) SetResponseCode added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*AadhaarxmlInitiateSessionResponse) SetResponseKey added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*AadhaarxmlInitiateSessionResponse) SetStatus added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type AadhaarxmlInitiateSessionResponseData added in v1.0.1

type AadhaarxmlInitiateSessionResponseData struct {
	CaptchaImage *string `json:"captchaImage,omitempty"`
}

AadhaarxmlInitiateSessionResponseData struct for AadhaarxmlInitiateSessionResponseData

func NewAadhaarxmlInitiateSessionResponseData added in v1.0.1

func NewAadhaarxmlInitiateSessionResponseData() *AadhaarxmlInitiateSessionResponseData

NewAadhaarxmlInitiateSessionResponseData instantiates a new AadhaarxmlInitiateSessionResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlInitiateSessionResponseDataWithDefaults added in v1.0.1

func NewAadhaarxmlInitiateSessionResponseDataWithDefaults() *AadhaarxmlInitiateSessionResponseData

NewAadhaarxmlInitiateSessionResponseDataWithDefaults instantiates a new AadhaarxmlInitiateSessionResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlInitiateSessionResponseData) GetCaptchaImage added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponseData) GetCaptchaImage() string

GetCaptchaImage returns the CaptchaImage field value if set, zero value otherwise.

func (*AadhaarxmlInitiateSessionResponseData) GetCaptchaImageOk added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponseData) GetCaptchaImageOk() (*string, bool)

GetCaptchaImageOk returns a tuple with the CaptchaImage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlInitiateSessionResponseData) HasCaptchaImage added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponseData) HasCaptchaImage() bool

HasCaptchaImage returns a boolean if a field has been set.

func (AadhaarxmlInitiateSessionResponseData) MarshalJSON added in v1.0.1

func (o AadhaarxmlInitiateSessionResponseData) MarshalJSON() ([]byte, error)

func (*AadhaarxmlInitiateSessionResponseData) SetCaptchaImage added in v1.0.1

func (o *AadhaarxmlInitiateSessionResponseData) SetCaptchaImage(v string)

SetCaptchaImage gets a reference to the given string and assigns it to the CaptchaImage field.

type AadhaarxmlReloadCaptcha400Response added in v1.0.1

type AadhaarxmlReloadCaptcha400Response struct {
	Data          *AadhaarxmlReloadCaptcha400ResponseData `json:"data,omitempty"`
	DecentroTxnId *string                                 `json:"decentroTxnId,omitempty"`
	Message       *string                                 `json:"message,omitempty"`
	ResponseCode  *string                                 `json:"responseCode,omitempty"`
	ResponseKey   *string                                 `json:"responseKey,omitempty"`
	Status        *string                                 `json:"status,omitempty"`
}

AadhaarxmlReloadCaptcha400Response struct for AadhaarxmlReloadCaptcha400Response

func NewAadhaarxmlReloadCaptcha400Response added in v1.0.1

func NewAadhaarxmlReloadCaptcha400Response() *AadhaarxmlReloadCaptcha400Response

NewAadhaarxmlReloadCaptcha400Response instantiates a new AadhaarxmlReloadCaptcha400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlReloadCaptcha400ResponseWithDefaults added in v1.0.1

func NewAadhaarxmlReloadCaptcha400ResponseWithDefaults() *AadhaarxmlReloadCaptcha400Response

NewAadhaarxmlReloadCaptcha400ResponseWithDefaults instantiates a new AadhaarxmlReloadCaptcha400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlReloadCaptcha400Response) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptcha400Response) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptcha400Response) GetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptcha400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptcha400Response) GetMessage added in v1.0.1

GetMessage returns the Message field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptcha400Response) GetMessageOk added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptcha400Response) GetResponseCode added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptcha400Response) GetResponseCodeOk added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptcha400Response) GetResponseKey added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptcha400Response) GetResponseKeyOk added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptcha400Response) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptcha400Response) GetStatusOk added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptcha400Response) HasData added in v1.0.1

HasData returns a boolean if a field has been set.

func (*AadhaarxmlReloadCaptcha400Response) HasDecentroTxnId added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*AadhaarxmlReloadCaptcha400Response) HasMessage added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AadhaarxmlReloadCaptcha400Response) HasResponseCode added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*AadhaarxmlReloadCaptcha400Response) HasResponseKey added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*AadhaarxmlReloadCaptcha400Response) HasStatus added in v1.0.1

HasStatus returns a boolean if a field has been set.

func (AadhaarxmlReloadCaptcha400Response) MarshalJSON added in v1.0.1

func (o AadhaarxmlReloadCaptcha400Response) MarshalJSON() ([]byte, error)

func (*AadhaarxmlReloadCaptcha400Response) SetData added in v1.0.1

SetData gets a reference to the given AadhaarxmlReloadCaptcha400ResponseData and assigns it to the Data field.

func (*AadhaarxmlReloadCaptcha400Response) SetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*AadhaarxmlReloadCaptcha400Response) SetMessage added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*AadhaarxmlReloadCaptcha400Response) SetResponseCode added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*AadhaarxmlReloadCaptcha400Response) SetResponseKey added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*AadhaarxmlReloadCaptcha400Response) SetStatus added in v1.0.1

SetStatus gets a reference to the given string and assigns it to the Status field.

type AadhaarxmlReloadCaptcha400ResponseData added in v1.0.1

type AadhaarxmlReloadCaptcha400ResponseData struct {
	CaptchaImage *string `json:"captchaImage,omitempty"`
}

AadhaarxmlReloadCaptcha400ResponseData struct for AadhaarxmlReloadCaptcha400ResponseData

func NewAadhaarxmlReloadCaptcha400ResponseData added in v1.0.1

func NewAadhaarxmlReloadCaptcha400ResponseData() *AadhaarxmlReloadCaptcha400ResponseData

NewAadhaarxmlReloadCaptcha400ResponseData instantiates a new AadhaarxmlReloadCaptcha400ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlReloadCaptcha400ResponseDataWithDefaults added in v1.0.1

func NewAadhaarxmlReloadCaptcha400ResponseDataWithDefaults() *AadhaarxmlReloadCaptcha400ResponseData

NewAadhaarxmlReloadCaptcha400ResponseDataWithDefaults instantiates a new AadhaarxmlReloadCaptcha400ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlReloadCaptcha400ResponseData) GetCaptchaImage added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400ResponseData) GetCaptchaImage() string

GetCaptchaImage returns the CaptchaImage field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptcha400ResponseData) GetCaptchaImageOk added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400ResponseData) GetCaptchaImageOk() (*string, bool)

GetCaptchaImageOk returns a tuple with the CaptchaImage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptcha400ResponseData) HasCaptchaImage added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400ResponseData) HasCaptchaImage() bool

HasCaptchaImage returns a boolean if a field has been set.

func (AadhaarxmlReloadCaptcha400ResponseData) MarshalJSON added in v1.0.1

func (o AadhaarxmlReloadCaptcha400ResponseData) MarshalJSON() ([]byte, error)

func (*AadhaarxmlReloadCaptcha400ResponseData) SetCaptchaImage added in v1.0.1

func (o *AadhaarxmlReloadCaptcha400ResponseData) SetCaptchaImage(v string)

SetCaptchaImage gets a reference to the given string and assigns it to the CaptchaImage field.

type AadhaarxmlReloadCaptchaRequest

type AadhaarxmlReloadCaptchaRequest struct {
	ReferenceId             *string `json:"reference_id,omitempty"`
	Consent                 *bool   `json:"consent,omitempty"`
	Purpose                 *string `json:"purpose,omitempty"`
	InitiationTransactionId *string `json:"initiation_transaction_id,omitempty"`
}

AadhaarxmlReloadCaptchaRequest struct for AadhaarxmlReloadCaptchaRequest

func NewAadhaarxmlReloadCaptchaRequest

func NewAadhaarxmlReloadCaptchaRequest() *AadhaarxmlReloadCaptchaRequest

NewAadhaarxmlReloadCaptchaRequest instantiates a new AadhaarxmlReloadCaptchaRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlReloadCaptchaRequestWithDefaults

func NewAadhaarxmlReloadCaptchaRequestWithDefaults() *AadhaarxmlReloadCaptchaRequest

NewAadhaarxmlReloadCaptchaRequestWithDefaults instantiates a new AadhaarxmlReloadCaptchaRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlReloadCaptchaRequest) GetConsent

func (o *AadhaarxmlReloadCaptchaRequest) GetConsent() bool

GetConsent returns the Consent field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptchaRequest) GetConsentOk

func (o *AadhaarxmlReloadCaptchaRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptchaRequest) GetInitiationTransactionId

func (o *AadhaarxmlReloadCaptchaRequest) GetInitiationTransactionId() string

GetInitiationTransactionId returns the InitiationTransactionId field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptchaRequest) GetInitiationTransactionIdOk

func (o *AadhaarxmlReloadCaptchaRequest) GetInitiationTransactionIdOk() (*string, bool)

GetInitiationTransactionIdOk returns a tuple with the InitiationTransactionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptchaRequest) GetPurpose

func (o *AadhaarxmlReloadCaptchaRequest) GetPurpose() string

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptchaRequest) GetPurposeOk

func (o *AadhaarxmlReloadCaptchaRequest) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptchaRequest) GetReferenceId

func (o *AadhaarxmlReloadCaptchaRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptchaRequest) GetReferenceIdOk

func (o *AadhaarxmlReloadCaptchaRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptchaRequest) HasConsent

func (o *AadhaarxmlReloadCaptchaRequest) HasConsent() bool

HasConsent returns a boolean if a field has been set.

func (*AadhaarxmlReloadCaptchaRequest) HasInitiationTransactionId

func (o *AadhaarxmlReloadCaptchaRequest) HasInitiationTransactionId() bool

HasInitiationTransactionId returns a boolean if a field has been set.

func (*AadhaarxmlReloadCaptchaRequest) HasPurpose

func (o *AadhaarxmlReloadCaptchaRequest) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (*AadhaarxmlReloadCaptchaRequest) HasReferenceId

func (o *AadhaarxmlReloadCaptchaRequest) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (AadhaarxmlReloadCaptchaRequest) MarshalJSON

func (o AadhaarxmlReloadCaptchaRequest) MarshalJSON() ([]byte, error)

func (*AadhaarxmlReloadCaptchaRequest) SetConsent

func (o *AadhaarxmlReloadCaptchaRequest) SetConsent(v bool)

SetConsent gets a reference to the given bool and assigns it to the Consent field.

func (*AadhaarxmlReloadCaptchaRequest) SetInitiationTransactionId

func (o *AadhaarxmlReloadCaptchaRequest) SetInitiationTransactionId(v string)

SetInitiationTransactionId gets a reference to the given string and assigns it to the InitiationTransactionId field.

func (*AadhaarxmlReloadCaptchaRequest) SetPurpose

func (o *AadhaarxmlReloadCaptchaRequest) SetPurpose(v string)

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*AadhaarxmlReloadCaptchaRequest) SetReferenceId

func (o *AadhaarxmlReloadCaptchaRequest) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

type AadhaarxmlReloadCaptchaResponse added in v1.0.1

type AadhaarxmlReloadCaptchaResponse struct {
	DecentroTxnId *string                              `json:"decentroTxnId,omitempty"`
	Status        *string                              `json:"status,omitempty"`
	ResponseCode  *string                              `json:"responseCode,omitempty"`
	Message       *string                              `json:"message,omitempty"`
	Data          *AadhaarxmlReloadCaptchaResponseData `json:"data,omitempty"`
	ResponseKey   *string                              `json:"responseKey,omitempty"`
}

AadhaarxmlReloadCaptchaResponse struct for AadhaarxmlReloadCaptchaResponse

func NewAadhaarxmlReloadCaptchaResponse added in v1.0.1

func NewAadhaarxmlReloadCaptchaResponse() *AadhaarxmlReloadCaptchaResponse

NewAadhaarxmlReloadCaptchaResponse instantiates a new AadhaarxmlReloadCaptchaResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlReloadCaptchaResponseWithDefaults added in v1.0.1

func NewAadhaarxmlReloadCaptchaResponseWithDefaults() *AadhaarxmlReloadCaptchaResponse

NewAadhaarxmlReloadCaptchaResponseWithDefaults instantiates a new AadhaarxmlReloadCaptchaResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlReloadCaptchaResponse) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptchaResponse) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptchaResponse) GetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptchaResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptchaResponse) GetMessage added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptchaResponse) GetMessageOk added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptchaResponse) GetResponseCode added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptchaResponse) GetResponseCodeOk added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptchaResponse) GetResponseKey added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptchaResponse) GetResponseKeyOk added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptchaResponse) GetStatus added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptchaResponse) GetStatusOk added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptchaResponse) HasData added in v1.0.1

HasData returns a boolean if a field has been set.

func (*AadhaarxmlReloadCaptchaResponse) HasDecentroTxnId added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*AadhaarxmlReloadCaptchaResponse) HasMessage added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AadhaarxmlReloadCaptchaResponse) HasResponseCode added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*AadhaarxmlReloadCaptchaResponse) HasResponseKey added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*AadhaarxmlReloadCaptchaResponse) HasStatus added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (AadhaarxmlReloadCaptchaResponse) MarshalJSON added in v1.0.1

func (o AadhaarxmlReloadCaptchaResponse) MarshalJSON() ([]byte, error)

func (*AadhaarxmlReloadCaptchaResponse) SetData added in v1.0.1

SetData gets a reference to the given AadhaarxmlReloadCaptchaResponseData and assigns it to the Data field.

func (*AadhaarxmlReloadCaptchaResponse) SetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*AadhaarxmlReloadCaptchaResponse) SetMessage added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*AadhaarxmlReloadCaptchaResponse) SetResponseCode added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*AadhaarxmlReloadCaptchaResponse) SetResponseKey added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*AadhaarxmlReloadCaptchaResponse) SetStatus added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type AadhaarxmlReloadCaptchaResponseData added in v1.0.1

type AadhaarxmlReloadCaptchaResponseData struct {
	CaptchaImage *string `json:"captchaImage,omitempty"`
}

AadhaarxmlReloadCaptchaResponseData struct for AadhaarxmlReloadCaptchaResponseData

func NewAadhaarxmlReloadCaptchaResponseData added in v1.0.1

func NewAadhaarxmlReloadCaptchaResponseData() *AadhaarxmlReloadCaptchaResponseData

NewAadhaarxmlReloadCaptchaResponseData instantiates a new AadhaarxmlReloadCaptchaResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlReloadCaptchaResponseDataWithDefaults added in v1.0.1

func NewAadhaarxmlReloadCaptchaResponseDataWithDefaults() *AadhaarxmlReloadCaptchaResponseData

NewAadhaarxmlReloadCaptchaResponseDataWithDefaults instantiates a new AadhaarxmlReloadCaptchaResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlReloadCaptchaResponseData) GetCaptchaImage added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponseData) GetCaptchaImage() string

GetCaptchaImage returns the CaptchaImage field value if set, zero value otherwise.

func (*AadhaarxmlReloadCaptchaResponseData) GetCaptchaImageOk added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponseData) GetCaptchaImageOk() (*string, bool)

GetCaptchaImageOk returns a tuple with the CaptchaImage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlReloadCaptchaResponseData) HasCaptchaImage added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponseData) HasCaptchaImage() bool

HasCaptchaImage returns a boolean if a field has been set.

func (AadhaarxmlReloadCaptchaResponseData) MarshalJSON added in v1.0.1

func (o AadhaarxmlReloadCaptchaResponseData) MarshalJSON() ([]byte, error)

func (*AadhaarxmlReloadCaptchaResponseData) SetCaptchaImage added in v1.0.1

func (o *AadhaarxmlReloadCaptchaResponseData) SetCaptchaImage(v string)

SetCaptchaImage gets a reference to the given string and assigns it to the CaptchaImage field.

type AadhaarxmlValidateOtp400Response added in v1.0.1

type AadhaarxmlValidateOtp400Response struct {
	Data          *AadhaarxmlValidateOtp400ResponseData `json:"data,omitempty"`
	DecentroTxnId *string                               `json:"decentroTxnId,omitempty"`
	Message       *string                               `json:"message,omitempty"`
	ResponseCode  *string                               `json:"responseCode,omitempty"`
	ResponseKey   *string                               `json:"responseKey,omitempty"`
	Status        *string                               `json:"status,omitempty"`
}

AadhaarxmlValidateOtp400Response struct for AadhaarxmlValidateOtp400Response

func NewAadhaarxmlValidateOtp400Response added in v1.0.1

func NewAadhaarxmlValidateOtp400Response() *AadhaarxmlValidateOtp400Response

NewAadhaarxmlValidateOtp400Response instantiates a new AadhaarxmlValidateOtp400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlValidateOtp400ResponseWithDefaults added in v1.0.1

func NewAadhaarxmlValidateOtp400ResponseWithDefaults() *AadhaarxmlValidateOtp400Response

NewAadhaarxmlValidateOtp400ResponseWithDefaults instantiates a new AadhaarxmlValidateOtp400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlValidateOtp400Response) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400Response) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400Response) GetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400Response) GetMessage added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400Response) GetMessageOk added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400Response) GetResponseCode added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400Response) GetResponseCodeOk added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400Response) GetResponseKey added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400Response) GetResponseKeyOk added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400Response) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400Response) GetStatusOk added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400Response) HasData added in v1.0.1

HasData returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400Response) HasDecentroTxnId added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400Response) HasMessage added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400Response) HasResponseCode added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400Response) HasResponseKey added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400Response) HasStatus added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (AadhaarxmlValidateOtp400Response) MarshalJSON added in v1.0.1

func (o AadhaarxmlValidateOtp400Response) MarshalJSON() ([]byte, error)

func (*AadhaarxmlValidateOtp400Response) SetData added in v1.0.1

SetData gets a reference to the given AadhaarxmlValidateOtp400ResponseData and assigns it to the Data field.

func (*AadhaarxmlValidateOtp400Response) SetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*AadhaarxmlValidateOtp400Response) SetMessage added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*AadhaarxmlValidateOtp400Response) SetResponseCode added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*AadhaarxmlValidateOtp400Response) SetResponseKey added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*AadhaarxmlValidateOtp400Response) SetStatus added in v1.0.1

func (o *AadhaarxmlValidateOtp400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type AadhaarxmlValidateOtp400ResponseData added in v1.0.1

type AadhaarxmlValidateOtp400ResponseData struct {
	AadhaarFile            *AadhaarxmlValidateOtp400ResponseDataAadhaarFile     `json:"aadhaarFile,omitempty"`
	AadhaarReferenceNumber *string                                              `json:"aadhaarReferenceNumber,omitempty"`
	Image                  *string                                              `json:"image,omitempty"`
	ProofOfAddress         *AadhaarxmlValidateOtp400ResponseDataProofOfAddress  `json:"proofOfAddress,omitempty"`
	ProofOfIdentity        *AadhaarxmlValidateOtp400ResponseDataProofOfIdentity `json:"proofOfIdentity,omitempty"`
}

AadhaarxmlValidateOtp400ResponseData struct for AadhaarxmlValidateOtp400ResponseData

func NewAadhaarxmlValidateOtp400ResponseData added in v1.0.1

func NewAadhaarxmlValidateOtp400ResponseData() *AadhaarxmlValidateOtp400ResponseData

NewAadhaarxmlValidateOtp400ResponseData instantiates a new AadhaarxmlValidateOtp400ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlValidateOtp400ResponseDataWithDefaults added in v1.0.1

func NewAadhaarxmlValidateOtp400ResponseDataWithDefaults() *AadhaarxmlValidateOtp400ResponseData

NewAadhaarxmlValidateOtp400ResponseDataWithDefaults instantiates a new AadhaarxmlValidateOtp400ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlValidateOtp400ResponseData) GetAadhaarFile added in v1.0.1

GetAadhaarFile returns the AadhaarFile field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseData) GetAadhaarFileOk added in v1.0.1

GetAadhaarFileOk returns a tuple with the AadhaarFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseData) GetAadhaarReferenceNumber added in v1.0.1

func (o *AadhaarxmlValidateOtp400ResponseData) GetAadhaarReferenceNumber() string

GetAadhaarReferenceNumber returns the AadhaarReferenceNumber field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseData) GetAadhaarReferenceNumberOk added in v1.0.1

func (o *AadhaarxmlValidateOtp400ResponseData) GetAadhaarReferenceNumberOk() (*string, bool)

GetAadhaarReferenceNumberOk returns a tuple with the AadhaarReferenceNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseData) GetImage added in v1.0.1

GetImage returns the Image field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseData) GetImageOk added in v1.0.1

func (o *AadhaarxmlValidateOtp400ResponseData) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseData) GetProofOfAddress added in v1.0.1

GetProofOfAddress returns the ProofOfAddress field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseData) GetProofOfAddressOk added in v1.0.1

GetProofOfAddressOk returns a tuple with the ProofOfAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseData) GetProofOfIdentity added in v1.0.1

GetProofOfIdentity returns the ProofOfIdentity field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseData) GetProofOfIdentityOk added in v1.0.1

GetProofOfIdentityOk returns a tuple with the ProofOfIdentity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseData) HasAadhaarFile added in v1.0.1

func (o *AadhaarxmlValidateOtp400ResponseData) HasAadhaarFile() bool

HasAadhaarFile returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseData) HasAadhaarReferenceNumber added in v1.0.1

func (o *AadhaarxmlValidateOtp400ResponseData) HasAadhaarReferenceNumber() bool

HasAadhaarReferenceNumber returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseData) HasImage added in v1.0.1

HasImage returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseData) HasProofOfAddress added in v1.0.1

func (o *AadhaarxmlValidateOtp400ResponseData) HasProofOfAddress() bool

HasProofOfAddress returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseData) HasProofOfIdentity added in v1.0.1

func (o *AadhaarxmlValidateOtp400ResponseData) HasProofOfIdentity() bool

HasProofOfIdentity returns a boolean if a field has been set.

func (AadhaarxmlValidateOtp400ResponseData) MarshalJSON added in v1.0.1

func (o AadhaarxmlValidateOtp400ResponseData) MarshalJSON() ([]byte, error)

func (*AadhaarxmlValidateOtp400ResponseData) SetAadhaarFile added in v1.0.1

SetAadhaarFile gets a reference to the given AadhaarxmlValidateOtp400ResponseDataAadhaarFile and assigns it to the AadhaarFile field.

func (*AadhaarxmlValidateOtp400ResponseData) SetAadhaarReferenceNumber added in v1.0.1

func (o *AadhaarxmlValidateOtp400ResponseData) SetAadhaarReferenceNumber(v string)

SetAadhaarReferenceNumber gets a reference to the given string and assigns it to the AadhaarReferenceNumber field.

func (*AadhaarxmlValidateOtp400ResponseData) SetImage added in v1.0.1

SetImage gets a reference to the given string and assigns it to the Image field.

func (*AadhaarxmlValidateOtp400ResponseData) SetProofOfAddress added in v1.0.1

SetProofOfAddress gets a reference to the given AadhaarxmlValidateOtp400ResponseDataProofOfAddress and assigns it to the ProofOfAddress field.

func (*AadhaarxmlValidateOtp400ResponseData) SetProofOfIdentity added in v1.0.1

SetProofOfIdentity gets a reference to the given AadhaarxmlValidateOtp400ResponseDataProofOfIdentity and assigns it to the ProofOfIdentity field.

type AadhaarxmlValidateOtp400ResponseDataAadhaarFile added in v1.0.1

type AadhaarxmlValidateOtp400ResponseDataAadhaarFile struct {
	AadhaarZip *string `json:"aadhaarZip,omitempty"`
	ShareCode  *string `json:"shareCode,omitempty"`
}

AadhaarxmlValidateOtp400ResponseDataAadhaarFile struct for AadhaarxmlValidateOtp400ResponseDataAadhaarFile

func NewAadhaarxmlValidateOtp400ResponseDataAadhaarFile added in v1.0.1

func NewAadhaarxmlValidateOtp400ResponseDataAadhaarFile() *AadhaarxmlValidateOtp400ResponseDataAadhaarFile

NewAadhaarxmlValidateOtp400ResponseDataAadhaarFile instantiates a new AadhaarxmlValidateOtp400ResponseDataAadhaarFile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlValidateOtp400ResponseDataAadhaarFileWithDefaults added in v1.0.1

func NewAadhaarxmlValidateOtp400ResponseDataAadhaarFileWithDefaults() *AadhaarxmlValidateOtp400ResponseDataAadhaarFile

NewAadhaarxmlValidateOtp400ResponseDataAadhaarFileWithDefaults instantiates a new AadhaarxmlValidateOtp400ResponseDataAadhaarFile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlValidateOtp400ResponseDataAadhaarFile) GetAadhaarZip added in v1.0.1

GetAadhaarZip returns the AadhaarZip field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataAadhaarFile) GetAadhaarZipOk added in v1.0.1

GetAadhaarZipOk returns a tuple with the AadhaarZip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataAadhaarFile) GetShareCode added in v1.0.1

GetShareCode returns the ShareCode field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataAadhaarFile) GetShareCodeOk added in v1.0.1

GetShareCodeOk returns a tuple with the ShareCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataAadhaarFile) HasAadhaarZip added in v1.0.1

HasAadhaarZip returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataAadhaarFile) HasShareCode added in v1.0.1

HasShareCode returns a boolean if a field has been set.

func (AadhaarxmlValidateOtp400ResponseDataAadhaarFile) MarshalJSON added in v1.0.1

func (*AadhaarxmlValidateOtp400ResponseDataAadhaarFile) SetAadhaarZip added in v1.0.1

SetAadhaarZip gets a reference to the given string and assigns it to the AadhaarZip field.

func (*AadhaarxmlValidateOtp400ResponseDataAadhaarFile) SetShareCode added in v1.0.1

SetShareCode gets a reference to the given string and assigns it to the ShareCode field.

type AadhaarxmlValidateOtp400ResponseDataProofOfAddress added in v1.0.1

type AadhaarxmlValidateOtp400ResponseDataProofOfAddress struct {
	CareOf      *string `json:"careOf,omitempty"`
	Country     *string `json:"country,omitempty"`
	District    *string `json:"district,omitempty"`
	House       *string `json:"house,omitempty"`
	Landmark    *string `json:"landmark,omitempty"`
	Locality    *string `json:"locality,omitempty"`
	Pincode     *string `json:"pincode,omitempty"`
	PostOffice  *string `json:"postOffice,omitempty"`
	State       *string `json:"state,omitempty"`
	Street      *string `json:"street,omitempty"`
	SubDistrict *string `json:"subDistrict,omitempty"`
	Vtc         *string `json:"vtc,omitempty"`
}

AadhaarxmlValidateOtp400ResponseDataProofOfAddress struct for AadhaarxmlValidateOtp400ResponseDataProofOfAddress

func NewAadhaarxmlValidateOtp400ResponseDataProofOfAddress added in v1.0.1

func NewAadhaarxmlValidateOtp400ResponseDataProofOfAddress() *AadhaarxmlValidateOtp400ResponseDataProofOfAddress

NewAadhaarxmlValidateOtp400ResponseDataProofOfAddress instantiates a new AadhaarxmlValidateOtp400ResponseDataProofOfAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlValidateOtp400ResponseDataProofOfAddressWithDefaults added in v1.0.1

func NewAadhaarxmlValidateOtp400ResponseDataProofOfAddressWithDefaults() *AadhaarxmlValidateOtp400ResponseDataProofOfAddress

NewAadhaarxmlValidateOtp400ResponseDataProofOfAddressWithDefaults instantiates a new AadhaarxmlValidateOtp400ResponseDataProofOfAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetCareOf added in v1.0.1

GetCareOf returns the CareOf field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetCareOfOk added in v1.0.1

GetCareOfOk returns a tuple with the CareOf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetCountry added in v1.0.1

GetCountry returns the Country field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetCountryOk added in v1.0.1

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetDistrict added in v1.0.1

GetDistrict returns the District field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetDistrictOk added in v1.0.1

GetDistrictOk returns a tuple with the District field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetHouse added in v1.0.1

GetHouse returns the House field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetHouseOk added in v1.0.1

GetHouseOk returns a tuple with the House field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetLandmark added in v1.0.1

GetLandmark returns the Landmark field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetLandmarkOk added in v1.0.1

GetLandmarkOk returns a tuple with the Landmark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetLocality added in v1.0.1

GetLocality returns the Locality field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetLocalityOk added in v1.0.1

GetLocalityOk returns a tuple with the Locality field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetPincode added in v1.0.1

GetPincode returns the Pincode field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetPincodeOk added in v1.0.1

GetPincodeOk returns a tuple with the Pincode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetPostOffice added in v1.0.1

GetPostOffice returns the PostOffice field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetPostOfficeOk added in v1.0.1

GetPostOfficeOk returns a tuple with the PostOffice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetState added in v1.0.1

GetState returns the State field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetStateOk added in v1.0.1

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetStreet added in v1.0.1

GetStreet returns the Street field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetStreetOk added in v1.0.1

GetStreetOk returns a tuple with the Street field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetSubDistrict added in v1.0.1

GetSubDistrict returns the SubDistrict field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetSubDistrictOk added in v1.0.1

GetSubDistrictOk returns a tuple with the SubDistrict field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetVtc added in v1.0.1

GetVtc returns the Vtc field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetVtcOk added in v1.0.1

GetVtcOk returns a tuple with the Vtc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasCareOf added in v1.0.1

HasCareOf returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasCountry added in v1.0.1

HasCountry returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasDistrict added in v1.0.1

HasDistrict returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasHouse added in v1.0.1

HasHouse returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasLandmark added in v1.0.1

HasLandmark returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasLocality added in v1.0.1

HasLocality returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasPincode added in v1.0.1

HasPincode returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasPostOffice added in v1.0.1

HasPostOffice returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasState added in v1.0.1

HasState returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasStreet added in v1.0.1

HasStreet returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasSubDistrict added in v1.0.1

HasSubDistrict returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasVtc added in v1.0.1

HasVtc returns a boolean if a field has been set.

func (AadhaarxmlValidateOtp400ResponseDataProofOfAddress) MarshalJSON added in v1.0.1

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetCareOf added in v1.0.1

SetCareOf gets a reference to the given string and assigns it to the CareOf field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetCountry added in v1.0.1

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetDistrict added in v1.0.1

SetDistrict gets a reference to the given string and assigns it to the District field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetHouse added in v1.0.1

SetHouse gets a reference to the given string and assigns it to the House field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetLandmark added in v1.0.1

SetLandmark gets a reference to the given string and assigns it to the Landmark field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetLocality added in v1.0.1

SetLocality gets a reference to the given string and assigns it to the Locality field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetPincode added in v1.0.1

SetPincode gets a reference to the given string and assigns it to the Pincode field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetPostOffice added in v1.0.1

SetPostOffice gets a reference to the given string and assigns it to the PostOffice field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetState added in v1.0.1

SetState gets a reference to the given string and assigns it to the State field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetStreet added in v1.0.1

SetStreet gets a reference to the given string and assigns it to the Street field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetSubDistrict added in v1.0.1

SetSubDistrict gets a reference to the given string and assigns it to the SubDistrict field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetVtc added in v1.0.1

SetVtc gets a reference to the given string and assigns it to the Vtc field.

type AadhaarxmlValidateOtp400ResponseDataProofOfIdentity added in v1.0.1

type AadhaarxmlValidateOtp400ResponseDataProofOfIdentity struct {
	Dob                *string `json:"dob,omitempty"`
	Gender             *string `json:"gender,omitempty"`
	HashedEmail        *string `json:"hashedEmail,omitempty"`
	HashedMobileNumber *string `json:"hashedMobileNumber,omitempty"`
	Name               *string `json:"name,omitempty"`
}

AadhaarxmlValidateOtp400ResponseDataProofOfIdentity struct for AadhaarxmlValidateOtp400ResponseDataProofOfIdentity

func NewAadhaarxmlValidateOtp400ResponseDataProofOfIdentity added in v1.0.1

func NewAadhaarxmlValidateOtp400ResponseDataProofOfIdentity() *AadhaarxmlValidateOtp400ResponseDataProofOfIdentity

NewAadhaarxmlValidateOtp400ResponseDataProofOfIdentity instantiates a new AadhaarxmlValidateOtp400ResponseDataProofOfIdentity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlValidateOtp400ResponseDataProofOfIdentityWithDefaults added in v1.0.1

func NewAadhaarxmlValidateOtp400ResponseDataProofOfIdentityWithDefaults() *AadhaarxmlValidateOtp400ResponseDataProofOfIdentity

NewAadhaarxmlValidateOtp400ResponseDataProofOfIdentityWithDefaults instantiates a new AadhaarxmlValidateOtp400ResponseDataProofOfIdentity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetDob added in v1.0.1

GetDob returns the Dob field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetDobOk added in v1.0.1

GetDobOk returns a tuple with the Dob field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetGender added in v1.0.1

GetGender returns the Gender field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetGenderOk added in v1.0.1

GetGenderOk returns a tuple with the Gender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetHashedEmail added in v1.0.1

GetHashedEmail returns the HashedEmail field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetHashedEmailOk added in v1.0.1

GetHashedEmailOk returns a tuple with the HashedEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetHashedMobileNumber added in v1.0.1

GetHashedMobileNumber returns the HashedMobileNumber field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetHashedMobileNumberOk added in v1.0.1

func (o *AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetHashedMobileNumberOk() (*string, bool)

GetHashedMobileNumberOk returns a tuple with the HashedMobileNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetName added in v1.0.1

GetName returns the Name field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetNameOk added in v1.0.1

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) HasDob added in v1.0.1

HasDob returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) HasGender added in v1.0.1

HasGender returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) HasHashedEmail added in v1.0.1

HasHashedEmail returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) HasHashedMobileNumber added in v1.0.1

func (o *AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) HasHashedMobileNumber() bool

HasHashedMobileNumber returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) HasName added in v1.0.1

HasName returns a boolean if a field has been set.

func (AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) MarshalJSON added in v1.0.1

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) SetDob added in v1.0.1

SetDob gets a reference to the given string and assigns it to the Dob field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) SetGender added in v1.0.1

SetGender gets a reference to the given string and assigns it to the Gender field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) SetHashedEmail added in v1.0.1

SetHashedEmail gets a reference to the given string and assigns it to the HashedEmail field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) SetHashedMobileNumber added in v1.0.1

func (o *AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) SetHashedMobileNumber(v string)

SetHashedMobileNumber gets a reference to the given string and assigns it to the HashedMobileNumber field.

func (*AadhaarxmlValidateOtp400ResponseDataProofOfIdentity) SetName added in v1.0.1

SetName gets a reference to the given string and assigns it to the Name field.

type AadhaarxmlValidateOtpRequest

type AadhaarxmlValidateOtpRequest struct {
	ReferenceId             *string `json:"reference_id,omitempty"`
	Consent                 *bool   `json:"consent,omitempty"`
	Purpose                 *string `json:"purpose,omitempty"`
	InitiationTransactionId *string `json:"initiation_transaction_id,omitempty"`
	GeneratePdf             *bool   `json:"generate_pdf,omitempty"`
	GenerateXml             *bool   `json:"generate_xml,omitempty"`
	ShareCode               *bool   `json:"share_code,omitempty"`
	Otp                     *string `json:"otp,omitempty"`
}

AadhaarxmlValidateOtpRequest struct for AadhaarxmlValidateOtpRequest

func NewAadhaarxmlValidateOtpRequest

func NewAadhaarxmlValidateOtpRequest() *AadhaarxmlValidateOtpRequest

NewAadhaarxmlValidateOtpRequest instantiates a new AadhaarxmlValidateOtpRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlValidateOtpRequestWithDefaults

func NewAadhaarxmlValidateOtpRequestWithDefaults() *AadhaarxmlValidateOtpRequest

NewAadhaarxmlValidateOtpRequestWithDefaults instantiates a new AadhaarxmlValidateOtpRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlValidateOtpRequest) GetConsent

func (o *AadhaarxmlValidateOtpRequest) GetConsent() bool

GetConsent returns the Consent field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpRequest) GetConsentOk

func (o *AadhaarxmlValidateOtpRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpRequest) GetGeneratePdf

func (o *AadhaarxmlValidateOtpRequest) GetGeneratePdf() bool

GetGeneratePdf returns the GeneratePdf field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpRequest) GetGeneratePdfOk

func (o *AadhaarxmlValidateOtpRequest) GetGeneratePdfOk() (*bool, bool)

GetGeneratePdfOk returns a tuple with the GeneratePdf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpRequest) GetGenerateXml

func (o *AadhaarxmlValidateOtpRequest) GetGenerateXml() bool

GetGenerateXml returns the GenerateXml field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpRequest) GetGenerateXmlOk

func (o *AadhaarxmlValidateOtpRequest) GetGenerateXmlOk() (*bool, bool)

GetGenerateXmlOk returns a tuple with the GenerateXml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpRequest) GetInitiationTransactionId

func (o *AadhaarxmlValidateOtpRequest) GetInitiationTransactionId() string

GetInitiationTransactionId returns the InitiationTransactionId field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpRequest) GetInitiationTransactionIdOk

func (o *AadhaarxmlValidateOtpRequest) GetInitiationTransactionIdOk() (*string, bool)

GetInitiationTransactionIdOk returns a tuple with the InitiationTransactionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpRequest) GetOtp

GetOtp returns the Otp field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpRequest) GetOtpOk

func (o *AadhaarxmlValidateOtpRequest) GetOtpOk() (*string, bool)

GetOtpOk returns a tuple with the Otp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpRequest) GetPurpose

func (o *AadhaarxmlValidateOtpRequest) GetPurpose() string

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpRequest) GetPurposeOk

func (o *AadhaarxmlValidateOtpRequest) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpRequest) GetReferenceId

func (o *AadhaarxmlValidateOtpRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpRequest) GetReferenceIdOk

func (o *AadhaarxmlValidateOtpRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpRequest) GetShareCode

func (o *AadhaarxmlValidateOtpRequest) GetShareCode() bool

GetShareCode returns the ShareCode field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpRequest) GetShareCodeOk

func (o *AadhaarxmlValidateOtpRequest) GetShareCodeOk() (*bool, bool)

GetShareCodeOk returns a tuple with the ShareCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpRequest) HasConsent

func (o *AadhaarxmlValidateOtpRequest) HasConsent() bool

HasConsent returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpRequest) HasGeneratePdf

func (o *AadhaarxmlValidateOtpRequest) HasGeneratePdf() bool

HasGeneratePdf returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpRequest) HasGenerateXml

func (o *AadhaarxmlValidateOtpRequest) HasGenerateXml() bool

HasGenerateXml returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpRequest) HasInitiationTransactionId

func (o *AadhaarxmlValidateOtpRequest) HasInitiationTransactionId() bool

HasInitiationTransactionId returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpRequest) HasOtp

func (o *AadhaarxmlValidateOtpRequest) HasOtp() bool

HasOtp returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpRequest) HasPurpose

func (o *AadhaarxmlValidateOtpRequest) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpRequest) HasReferenceId

func (o *AadhaarxmlValidateOtpRequest) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpRequest) HasShareCode

func (o *AadhaarxmlValidateOtpRequest) HasShareCode() bool

HasShareCode returns a boolean if a field has been set.

func (AadhaarxmlValidateOtpRequest) MarshalJSON

func (o AadhaarxmlValidateOtpRequest) MarshalJSON() ([]byte, error)

func (*AadhaarxmlValidateOtpRequest) SetConsent

func (o *AadhaarxmlValidateOtpRequest) SetConsent(v bool)

SetConsent gets a reference to the given bool and assigns it to the Consent field.

func (*AadhaarxmlValidateOtpRequest) SetGeneratePdf

func (o *AadhaarxmlValidateOtpRequest) SetGeneratePdf(v bool)

SetGeneratePdf gets a reference to the given bool and assigns it to the GeneratePdf field.

func (*AadhaarxmlValidateOtpRequest) SetGenerateXml

func (o *AadhaarxmlValidateOtpRequest) SetGenerateXml(v bool)

SetGenerateXml gets a reference to the given bool and assigns it to the GenerateXml field.

func (*AadhaarxmlValidateOtpRequest) SetInitiationTransactionId

func (o *AadhaarxmlValidateOtpRequest) SetInitiationTransactionId(v string)

SetInitiationTransactionId gets a reference to the given string and assigns it to the InitiationTransactionId field.

func (*AadhaarxmlValidateOtpRequest) SetOtp

func (o *AadhaarxmlValidateOtpRequest) SetOtp(v string)

SetOtp gets a reference to the given string and assigns it to the Otp field.

func (*AadhaarxmlValidateOtpRequest) SetPurpose

func (o *AadhaarxmlValidateOtpRequest) SetPurpose(v string)

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*AadhaarxmlValidateOtpRequest) SetReferenceId

func (o *AadhaarxmlValidateOtpRequest) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

func (*AadhaarxmlValidateOtpRequest) SetShareCode

func (o *AadhaarxmlValidateOtpRequest) SetShareCode(v bool)

SetShareCode gets a reference to the given bool and assigns it to the ShareCode field.

type AadhaarxmlValidateOtpResponse added in v1.0.1

type AadhaarxmlValidateOtpResponse struct {
	DecentroTxnId *string                            `json:"decentroTxnId,omitempty"`
	Status        *string                            `json:"status,omitempty"`
	ResponseCode  *string                            `json:"responseCode,omitempty"`
	Message       *string                            `json:"message,omitempty"`
	Data          *AadhaarxmlValidateOtpResponseData `json:"data,omitempty"`
	ResponseKey   *string                            `json:"responseKey,omitempty"`
}

AadhaarxmlValidateOtpResponse struct for AadhaarxmlValidateOtpResponse

func NewAadhaarxmlValidateOtpResponse added in v1.0.1

func NewAadhaarxmlValidateOtpResponse() *AadhaarxmlValidateOtpResponse

NewAadhaarxmlValidateOtpResponse instantiates a new AadhaarxmlValidateOtpResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlValidateOtpResponseWithDefaults added in v1.0.1

func NewAadhaarxmlValidateOtpResponseWithDefaults() *AadhaarxmlValidateOtpResponse

NewAadhaarxmlValidateOtpResponseWithDefaults instantiates a new AadhaarxmlValidateOtpResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlValidateOtpResponse) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponse) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponse) GetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponse) GetMessage added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponse) GetMessageOk added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponse) GetResponseCode added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponse) GetResponseCodeOk added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponse) GetResponseKey added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponse) GetResponseKeyOk added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponse) GetStatus added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponse) GetStatusOk added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponse) HasData added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponse) HasDecentroTxnId added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponse) HasMessage added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponse) HasResponseCode added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponse) HasResponseKey added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponse) HasStatus added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (AadhaarxmlValidateOtpResponse) MarshalJSON added in v1.0.1

func (o AadhaarxmlValidateOtpResponse) MarshalJSON() ([]byte, error)

func (*AadhaarxmlValidateOtpResponse) SetData added in v1.0.1

SetData gets a reference to the given AadhaarxmlValidateOtpResponseData and assigns it to the Data field.

func (*AadhaarxmlValidateOtpResponse) SetDecentroTxnId added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*AadhaarxmlValidateOtpResponse) SetMessage added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*AadhaarxmlValidateOtpResponse) SetResponseCode added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*AadhaarxmlValidateOtpResponse) SetResponseKey added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*AadhaarxmlValidateOtpResponse) SetStatus added in v1.0.1

func (o *AadhaarxmlValidateOtpResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type AadhaarxmlValidateOtpResponseData added in v1.0.1

type AadhaarxmlValidateOtpResponseData struct {
	AadhaarReferenceNumber *string                                           `json:"aadhaarReferenceNumber,omitempty"`
	ProofOfIdentity        *AadhaarxmlValidateOtpResponseDataProofOfIdentity `json:"proofOfIdentity,omitempty"`
	ProofOfAddress         *AadhaarxmlValidateOtpResponseDataProofOfAddress  `json:"proofOfAddress,omitempty"`
	Image                  *string                                           `json:"image,omitempty"`
	AadhaarFile            *AadhaarxmlValidateOtpResponseDataAadhaarFile     `json:"aadhaarFile,omitempty"`
}

AadhaarxmlValidateOtpResponseData struct for AadhaarxmlValidateOtpResponseData

func NewAadhaarxmlValidateOtpResponseData added in v1.0.1

func NewAadhaarxmlValidateOtpResponseData() *AadhaarxmlValidateOtpResponseData

NewAadhaarxmlValidateOtpResponseData instantiates a new AadhaarxmlValidateOtpResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlValidateOtpResponseDataWithDefaults added in v1.0.1

func NewAadhaarxmlValidateOtpResponseDataWithDefaults() *AadhaarxmlValidateOtpResponseData

NewAadhaarxmlValidateOtpResponseDataWithDefaults instantiates a new AadhaarxmlValidateOtpResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlValidateOtpResponseData) GetAadhaarFile added in v1.0.1

GetAadhaarFile returns the AadhaarFile field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseData) GetAadhaarFileOk added in v1.0.1

GetAadhaarFileOk returns a tuple with the AadhaarFile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseData) GetAadhaarReferenceNumber added in v1.0.1

func (o *AadhaarxmlValidateOtpResponseData) GetAadhaarReferenceNumber() string

GetAadhaarReferenceNumber returns the AadhaarReferenceNumber field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseData) GetAadhaarReferenceNumberOk added in v1.0.1

func (o *AadhaarxmlValidateOtpResponseData) GetAadhaarReferenceNumberOk() (*string, bool)

GetAadhaarReferenceNumberOk returns a tuple with the AadhaarReferenceNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseData) GetImage added in v1.0.1

GetImage returns the Image field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseData) GetImageOk added in v1.0.1

func (o *AadhaarxmlValidateOtpResponseData) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseData) GetProofOfAddress added in v1.0.1

GetProofOfAddress returns the ProofOfAddress field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseData) GetProofOfAddressOk added in v1.0.1

GetProofOfAddressOk returns a tuple with the ProofOfAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseData) GetProofOfIdentity added in v1.0.1

GetProofOfIdentity returns the ProofOfIdentity field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseData) GetProofOfIdentityOk added in v1.0.1

GetProofOfIdentityOk returns a tuple with the ProofOfIdentity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseData) HasAadhaarFile added in v1.0.1

func (o *AadhaarxmlValidateOtpResponseData) HasAadhaarFile() bool

HasAadhaarFile returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseData) HasAadhaarReferenceNumber added in v1.0.1

func (o *AadhaarxmlValidateOtpResponseData) HasAadhaarReferenceNumber() bool

HasAadhaarReferenceNumber returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseData) HasImage added in v1.0.1

HasImage returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseData) HasProofOfAddress added in v1.0.1

func (o *AadhaarxmlValidateOtpResponseData) HasProofOfAddress() bool

HasProofOfAddress returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseData) HasProofOfIdentity added in v1.0.1

func (o *AadhaarxmlValidateOtpResponseData) HasProofOfIdentity() bool

HasProofOfIdentity returns a boolean if a field has been set.

func (AadhaarxmlValidateOtpResponseData) MarshalJSON added in v1.0.1

func (o AadhaarxmlValidateOtpResponseData) MarshalJSON() ([]byte, error)

func (*AadhaarxmlValidateOtpResponseData) SetAadhaarFile added in v1.0.1

SetAadhaarFile gets a reference to the given AadhaarxmlValidateOtpResponseDataAadhaarFile and assigns it to the AadhaarFile field.

func (*AadhaarxmlValidateOtpResponseData) SetAadhaarReferenceNumber added in v1.0.1

func (o *AadhaarxmlValidateOtpResponseData) SetAadhaarReferenceNumber(v string)

SetAadhaarReferenceNumber gets a reference to the given string and assigns it to the AadhaarReferenceNumber field.

func (*AadhaarxmlValidateOtpResponseData) SetImage added in v1.0.1

SetImage gets a reference to the given string and assigns it to the Image field.

func (*AadhaarxmlValidateOtpResponseData) SetProofOfAddress added in v1.0.1

SetProofOfAddress gets a reference to the given AadhaarxmlValidateOtpResponseDataProofOfAddress and assigns it to the ProofOfAddress field.

func (*AadhaarxmlValidateOtpResponseData) SetProofOfIdentity added in v1.0.1

SetProofOfIdentity gets a reference to the given AadhaarxmlValidateOtpResponseDataProofOfIdentity and assigns it to the ProofOfIdentity field.

type AadhaarxmlValidateOtpResponseDataAadhaarFile added in v1.0.1

type AadhaarxmlValidateOtpResponseDataAadhaarFile struct {
	AadhaarZip *string `json:"aadhaarZip,omitempty"`
	ShareCode  *string `json:"shareCode,omitempty"`
}

AadhaarxmlValidateOtpResponseDataAadhaarFile struct for AadhaarxmlValidateOtpResponseDataAadhaarFile

func NewAadhaarxmlValidateOtpResponseDataAadhaarFile added in v1.0.1

func NewAadhaarxmlValidateOtpResponseDataAadhaarFile() *AadhaarxmlValidateOtpResponseDataAadhaarFile

NewAadhaarxmlValidateOtpResponseDataAadhaarFile instantiates a new AadhaarxmlValidateOtpResponseDataAadhaarFile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlValidateOtpResponseDataAadhaarFileWithDefaults added in v1.0.1

func NewAadhaarxmlValidateOtpResponseDataAadhaarFileWithDefaults() *AadhaarxmlValidateOtpResponseDataAadhaarFile

NewAadhaarxmlValidateOtpResponseDataAadhaarFileWithDefaults instantiates a new AadhaarxmlValidateOtpResponseDataAadhaarFile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlValidateOtpResponseDataAadhaarFile) GetAadhaarZip added in v1.0.1

GetAadhaarZip returns the AadhaarZip field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataAadhaarFile) GetAadhaarZipOk added in v1.0.1

func (o *AadhaarxmlValidateOtpResponseDataAadhaarFile) GetAadhaarZipOk() (*string, bool)

GetAadhaarZipOk returns a tuple with the AadhaarZip field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataAadhaarFile) GetShareCode added in v1.0.1

GetShareCode returns the ShareCode field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataAadhaarFile) GetShareCodeOk added in v1.0.1

GetShareCodeOk returns a tuple with the ShareCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataAadhaarFile) HasAadhaarZip added in v1.0.1

HasAadhaarZip returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataAadhaarFile) HasShareCode added in v1.0.1

HasShareCode returns a boolean if a field has been set.

func (AadhaarxmlValidateOtpResponseDataAadhaarFile) MarshalJSON added in v1.0.1

func (*AadhaarxmlValidateOtpResponseDataAadhaarFile) SetAadhaarZip added in v1.0.1

SetAadhaarZip gets a reference to the given string and assigns it to the AadhaarZip field.

func (*AadhaarxmlValidateOtpResponseDataAadhaarFile) SetShareCode added in v1.0.1

SetShareCode gets a reference to the given string and assigns it to the ShareCode field.

type AadhaarxmlValidateOtpResponseDataProofOfAddress added in v1.0.1

type AadhaarxmlValidateOtpResponseDataProofOfAddress struct {
	CareOf      *string `json:"careOf,omitempty"`
	Country     *string `json:"country,omitempty"`
	District    *string `json:"district,omitempty"`
	House       *string `json:"house,omitempty"`
	Landmark    *string `json:"landmark,omitempty"`
	Locality    *string `json:"locality,omitempty"`
	Pincode     *string `json:"pincode,omitempty"`
	PostOffice  *string `json:"postOffice,omitempty"`
	State       *string `json:"state,omitempty"`
	Street      *string `json:"street,omitempty"`
	SubDistrict *string `json:"subDistrict,omitempty"`
	Vtc         *string `json:"vtc,omitempty"`
}

AadhaarxmlValidateOtpResponseDataProofOfAddress struct for AadhaarxmlValidateOtpResponseDataProofOfAddress

func NewAadhaarxmlValidateOtpResponseDataProofOfAddress added in v1.0.1

func NewAadhaarxmlValidateOtpResponseDataProofOfAddress() *AadhaarxmlValidateOtpResponseDataProofOfAddress

NewAadhaarxmlValidateOtpResponseDataProofOfAddress instantiates a new AadhaarxmlValidateOtpResponseDataProofOfAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlValidateOtpResponseDataProofOfAddressWithDefaults added in v1.0.1

func NewAadhaarxmlValidateOtpResponseDataProofOfAddressWithDefaults() *AadhaarxmlValidateOtpResponseDataProofOfAddress

NewAadhaarxmlValidateOtpResponseDataProofOfAddressWithDefaults instantiates a new AadhaarxmlValidateOtpResponseDataProofOfAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetCareOf added in v1.0.1

GetCareOf returns the CareOf field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetCareOfOk added in v1.0.1

GetCareOfOk returns a tuple with the CareOf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetCountry added in v1.0.1

GetCountry returns the Country field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetCountryOk added in v1.0.1

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetDistrict added in v1.0.1

GetDistrict returns the District field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetDistrictOk added in v1.0.1

GetDistrictOk returns a tuple with the District field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetHouse added in v1.0.1

GetHouse returns the House field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetHouseOk added in v1.0.1

GetHouseOk returns a tuple with the House field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetLandmark added in v1.0.1

GetLandmark returns the Landmark field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetLandmarkOk added in v1.0.1

GetLandmarkOk returns a tuple with the Landmark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetLocality added in v1.0.1

GetLocality returns the Locality field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetLocalityOk added in v1.0.1

GetLocalityOk returns a tuple with the Locality field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetPincode added in v1.0.1

GetPincode returns the Pincode field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetPincodeOk added in v1.0.1

GetPincodeOk returns a tuple with the Pincode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetPostOffice added in v1.0.1

GetPostOffice returns the PostOffice field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetPostOfficeOk added in v1.0.1

GetPostOfficeOk returns a tuple with the PostOffice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetState added in v1.0.1

GetState returns the State field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetStateOk added in v1.0.1

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetStreet added in v1.0.1

GetStreet returns the Street field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetStreetOk added in v1.0.1

GetStreetOk returns a tuple with the Street field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetSubDistrict added in v1.0.1

GetSubDistrict returns the SubDistrict field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetSubDistrictOk added in v1.0.1

GetSubDistrictOk returns a tuple with the SubDistrict field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetVtc added in v1.0.1

GetVtc returns the Vtc field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) GetVtcOk added in v1.0.1

GetVtcOk returns a tuple with the Vtc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) HasCareOf added in v1.0.1

HasCareOf returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) HasCountry added in v1.0.1

HasCountry returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) HasDistrict added in v1.0.1

HasDistrict returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) HasHouse added in v1.0.1

HasHouse returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) HasLandmark added in v1.0.1

HasLandmark returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) HasLocality added in v1.0.1

HasLocality returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) HasPincode added in v1.0.1

HasPincode returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) HasPostOffice added in v1.0.1

HasPostOffice returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) HasState added in v1.0.1

HasState returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) HasStreet added in v1.0.1

HasStreet returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) HasSubDistrict added in v1.0.1

HasSubDistrict returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) HasVtc added in v1.0.1

HasVtc returns a boolean if a field has been set.

func (AadhaarxmlValidateOtpResponseDataProofOfAddress) MarshalJSON added in v1.0.1

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) SetCareOf added in v1.0.1

SetCareOf gets a reference to the given string and assigns it to the CareOf field.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) SetCountry added in v1.0.1

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) SetDistrict added in v1.0.1

SetDistrict gets a reference to the given string and assigns it to the District field.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) SetHouse added in v1.0.1

SetHouse gets a reference to the given string and assigns it to the House field.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) SetLandmark added in v1.0.1

SetLandmark gets a reference to the given string and assigns it to the Landmark field.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) SetLocality added in v1.0.1

SetLocality gets a reference to the given string and assigns it to the Locality field.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) SetPincode added in v1.0.1

SetPincode gets a reference to the given string and assigns it to the Pincode field.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) SetPostOffice added in v1.0.1

SetPostOffice gets a reference to the given string and assigns it to the PostOffice field.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) SetState added in v1.0.1

SetState gets a reference to the given string and assigns it to the State field.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) SetStreet added in v1.0.1

SetStreet gets a reference to the given string and assigns it to the Street field.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) SetSubDistrict added in v1.0.1

SetSubDistrict gets a reference to the given string and assigns it to the SubDistrict field.

func (*AadhaarxmlValidateOtpResponseDataProofOfAddress) SetVtc added in v1.0.1

SetVtc gets a reference to the given string and assigns it to the Vtc field.

type AadhaarxmlValidateOtpResponseDataProofOfIdentity added in v1.0.1

type AadhaarxmlValidateOtpResponseDataProofOfIdentity struct {
	Dob                *string `json:"dob,omitempty"`
	HashedEmail        *string `json:"hashedEmail,omitempty"`
	Gender             *string `json:"gender,omitempty"`
	HashedMobileNumber *string `json:"hashedMobileNumber,omitempty"`
	Name               *string `json:"name,omitempty"`
}

AadhaarxmlValidateOtpResponseDataProofOfIdentity struct for AadhaarxmlValidateOtpResponseDataProofOfIdentity

func NewAadhaarxmlValidateOtpResponseDataProofOfIdentity added in v1.0.1

func NewAadhaarxmlValidateOtpResponseDataProofOfIdentity() *AadhaarxmlValidateOtpResponseDataProofOfIdentity

NewAadhaarxmlValidateOtpResponseDataProofOfIdentity instantiates a new AadhaarxmlValidateOtpResponseDataProofOfIdentity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewAadhaarxmlValidateOtpResponseDataProofOfIdentityWithDefaults added in v1.0.1

func NewAadhaarxmlValidateOtpResponseDataProofOfIdentityWithDefaults() *AadhaarxmlValidateOtpResponseDataProofOfIdentity

NewAadhaarxmlValidateOtpResponseDataProofOfIdentityWithDefaults instantiates a new AadhaarxmlValidateOtpResponseDataProofOfIdentity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) GetDob added in v1.0.1

GetDob returns the Dob field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) GetDobOk added in v1.0.1

GetDobOk returns a tuple with the Dob field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) GetGender added in v1.0.1

GetGender returns the Gender field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) GetGenderOk added in v1.0.1

GetGenderOk returns a tuple with the Gender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) GetHashedEmail added in v1.0.1

GetHashedEmail returns the HashedEmail field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) GetHashedEmailOk added in v1.0.1

GetHashedEmailOk returns a tuple with the HashedEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) GetHashedMobileNumber added in v1.0.1

func (o *AadhaarxmlValidateOtpResponseDataProofOfIdentity) GetHashedMobileNumber() string

GetHashedMobileNumber returns the HashedMobileNumber field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) GetHashedMobileNumberOk added in v1.0.1

func (o *AadhaarxmlValidateOtpResponseDataProofOfIdentity) GetHashedMobileNumberOk() (*string, bool)

GetHashedMobileNumberOk returns a tuple with the HashedMobileNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) GetName added in v1.0.1

GetName returns the Name field value if set, zero value otherwise.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) GetNameOk added in v1.0.1

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) HasDob added in v1.0.1

HasDob returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) HasGender added in v1.0.1

HasGender returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) HasHashedEmail added in v1.0.1

HasHashedEmail returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) HasHashedMobileNumber added in v1.0.1

func (o *AadhaarxmlValidateOtpResponseDataProofOfIdentity) HasHashedMobileNumber() bool

HasHashedMobileNumber returns a boolean if a field has been set.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) HasName added in v1.0.1

HasName returns a boolean if a field has been set.

func (AadhaarxmlValidateOtpResponseDataProofOfIdentity) MarshalJSON added in v1.0.1

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) SetDob added in v1.0.1

SetDob gets a reference to the given string and assigns it to the Dob field.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) SetGender added in v1.0.1

SetGender gets a reference to the given string and assigns it to the Gender field.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) SetHashedEmail added in v1.0.1

SetHashedEmail gets a reference to the given string and assigns it to the HashedEmail field.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) SetHashedMobileNumber added in v1.0.1

func (o *AadhaarxmlValidateOtpResponseDataProofOfIdentity) SetHashedMobileNumber(v string)

SetHashedMobileNumber gets a reference to the given string and assigns it to the HashedMobileNumber field.

func (*AadhaarxmlValidateOtpResponseDataProofOfIdentity) SetName added in v1.0.1

SetName gets a reference to the given string and assigns it to the Name field.

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type CheckImageQuality400Response

type CheckImageQuality400Response struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Status        *string `json:"status,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	Message       *string `json:"message,omitempty"`
}

CheckImageQuality400Response struct for CheckImageQuality400Response

func NewCheckImageQuality400Response

func NewCheckImageQuality400Response() *CheckImageQuality400Response

NewCheckImageQuality400Response instantiates a new CheckImageQuality400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckImageQuality400ResponseWithDefaults

func NewCheckImageQuality400ResponseWithDefaults() *CheckImageQuality400Response

NewCheckImageQuality400ResponseWithDefaults instantiates a new CheckImageQuality400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckImageQuality400Response) GetDecentroTxnId

func (o *CheckImageQuality400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*CheckImageQuality400Response) GetDecentroTxnIdOk

func (o *CheckImageQuality400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQuality400Response) GetMessage

func (o *CheckImageQuality400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*CheckImageQuality400Response) GetMessageOk

func (o *CheckImageQuality400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQuality400Response) GetResponseCode

func (o *CheckImageQuality400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*CheckImageQuality400Response) GetResponseCodeOk

func (o *CheckImageQuality400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQuality400Response) GetStatus

func (o *CheckImageQuality400Response) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*CheckImageQuality400Response) GetStatusOk

func (o *CheckImageQuality400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQuality400Response) HasDecentroTxnId

func (o *CheckImageQuality400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*CheckImageQuality400Response) HasMessage

func (o *CheckImageQuality400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*CheckImageQuality400Response) HasResponseCode

func (o *CheckImageQuality400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*CheckImageQuality400Response) HasStatus

func (o *CheckImageQuality400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (CheckImageQuality400Response) MarshalJSON

func (o CheckImageQuality400Response) MarshalJSON() ([]byte, error)

func (*CheckImageQuality400Response) SetDecentroTxnId

func (o *CheckImageQuality400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*CheckImageQuality400Response) SetMessage

func (o *CheckImageQuality400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*CheckImageQuality400Response) SetResponseCode

func (o *CheckImageQuality400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*CheckImageQuality400Response) SetStatus

func (o *CheckImageQuality400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type CheckImageQualityRequest

type CheckImageQualityRequest struct {
	ReferenceId      string    `json:"reference_id"`
	Consent          bool      `json:"consent"`
	ConsentPurpose   string    `json:"consent_purpose"`
	Image            **os.File `json:"image,omitempty"`
	QualityParameter *string   `json:"quality_parameter,omitempty"`
	ImageUrl         *string   `json:"image_url,omitempty"`
}

CheckImageQualityRequest struct for CheckImageQualityRequest

func NewCheckImageQualityRequest

func NewCheckImageQualityRequest(referenceId string, consent bool, consentPurpose string) *CheckImageQualityRequest

NewCheckImageQualityRequest instantiates a new CheckImageQualityRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckImageQualityRequestWithDefaults

func NewCheckImageQualityRequestWithDefaults() *CheckImageQualityRequest

NewCheckImageQualityRequestWithDefaults instantiates a new CheckImageQualityRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckImageQualityRequest) GetConsent

func (o *CheckImageQualityRequest) GetConsent() bool

GetConsent returns the Consent field value

func (*CheckImageQualityRequest) GetConsentOk

func (o *CheckImageQualityRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value and a boolean to check if the value has been set.

func (*CheckImageQualityRequest) GetConsentPurpose

func (o *CheckImageQualityRequest) GetConsentPurpose() string

GetConsentPurpose returns the ConsentPurpose field value

func (*CheckImageQualityRequest) GetConsentPurposeOk

func (o *CheckImageQualityRequest) GetConsentPurposeOk() (*string, bool)

GetConsentPurposeOk returns a tuple with the ConsentPurpose field value and a boolean to check if the value has been set.

func (*CheckImageQualityRequest) GetImage

func (o *CheckImageQualityRequest) GetImage() *os.File

GetImage returns the Image field value if set, zero value otherwise.

func (*CheckImageQualityRequest) GetImageOk

func (o *CheckImageQualityRequest) GetImageOk() (**os.File, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityRequest) GetImageUrl

func (o *CheckImageQualityRequest) GetImageUrl() string

GetImageUrl returns the ImageUrl field value if set, zero value otherwise.

func (*CheckImageQualityRequest) GetImageUrlOk

func (o *CheckImageQualityRequest) GetImageUrlOk() (*string, bool)

GetImageUrlOk returns a tuple with the ImageUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityRequest) GetQualityParameter

func (o *CheckImageQualityRequest) GetQualityParameter() string

GetQualityParameter returns the QualityParameter field value if set, zero value otherwise.

func (*CheckImageQualityRequest) GetQualityParameterOk

func (o *CheckImageQualityRequest) GetQualityParameterOk() (*string, bool)

GetQualityParameterOk returns a tuple with the QualityParameter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityRequest) GetReferenceId

func (o *CheckImageQualityRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value

func (*CheckImageQualityRequest) GetReferenceIdOk

func (o *CheckImageQualityRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value and a boolean to check if the value has been set.

func (*CheckImageQualityRequest) HasImage

func (o *CheckImageQualityRequest) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*CheckImageQualityRequest) HasImageUrl

func (o *CheckImageQualityRequest) HasImageUrl() bool

HasImageUrl returns a boolean if a field has been set.

func (*CheckImageQualityRequest) HasQualityParameter

func (o *CheckImageQualityRequest) HasQualityParameter() bool

HasQualityParameter returns a boolean if a field has been set.

func (CheckImageQualityRequest) MarshalJSON

func (o CheckImageQualityRequest) MarshalJSON() ([]byte, error)

func (*CheckImageQualityRequest) SetConsent

func (o *CheckImageQualityRequest) SetConsent(v bool)

SetConsent sets field value

func (*CheckImageQualityRequest) SetConsentPurpose

func (o *CheckImageQualityRequest) SetConsentPurpose(v string)

SetConsentPurpose sets field value

func (*CheckImageQualityRequest) SetImage

func (o *CheckImageQualityRequest) SetImage(v *os.File)

SetImage gets a reference to the given *os.File and assigns it to the Image field.

func (*CheckImageQualityRequest) SetImageUrl

func (o *CheckImageQualityRequest) SetImageUrl(v string)

SetImageUrl gets a reference to the given string and assigns it to the ImageUrl field.

func (*CheckImageQualityRequest) SetQualityParameter

func (o *CheckImageQualityRequest) SetQualityParameter(v string)

SetQualityParameter gets a reference to the given string and assigns it to the QualityParameter field.

func (*CheckImageQualityRequest) SetReferenceId

func (o *CheckImageQualityRequest) SetReferenceId(v string)

SetReferenceId sets field value

type CheckImageQualityResponse

type CheckImageQualityResponse struct {
	DecentroTxnId *string                        `json:"decentroTxnId,omitempty"`
	Status        *string                        `json:"status,omitempty"`
	ResponseCode  *string                        `json:"responseCode,omitempty"`
	Message       *string                        `json:"message,omitempty"`
	Data          *CheckImageQualityResponseData `json:"data,omitempty"`
}

CheckImageQualityResponse struct for CheckImageQualityResponse

func NewCheckImageQualityResponse

func NewCheckImageQualityResponse() *CheckImageQualityResponse

NewCheckImageQualityResponse instantiates a new CheckImageQualityResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckImageQualityResponseWithDefaults

func NewCheckImageQualityResponseWithDefaults() *CheckImageQualityResponse

NewCheckImageQualityResponseWithDefaults instantiates a new CheckImageQualityResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckImageQualityResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*CheckImageQualityResponse) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponse) GetDecentroTxnId

func (o *CheckImageQualityResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*CheckImageQualityResponse) GetDecentroTxnIdOk

func (o *CheckImageQualityResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponse) GetMessage

func (o *CheckImageQualityResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*CheckImageQualityResponse) GetMessageOk

func (o *CheckImageQualityResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponse) GetResponseCode

func (o *CheckImageQualityResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*CheckImageQualityResponse) GetResponseCodeOk

func (o *CheckImageQualityResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponse) GetStatus

func (o *CheckImageQualityResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*CheckImageQualityResponse) GetStatusOk

func (o *CheckImageQualityResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponse) HasData

func (o *CheckImageQualityResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*CheckImageQualityResponse) HasDecentroTxnId

func (o *CheckImageQualityResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*CheckImageQualityResponse) HasMessage

func (o *CheckImageQualityResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*CheckImageQualityResponse) HasResponseCode

func (o *CheckImageQualityResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*CheckImageQualityResponse) HasStatus

func (o *CheckImageQualityResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (CheckImageQualityResponse) MarshalJSON

func (o CheckImageQualityResponse) MarshalJSON() ([]byte, error)

func (*CheckImageQualityResponse) SetData

SetData gets a reference to the given CheckImageQualityResponseData and assigns it to the Data field.

func (*CheckImageQualityResponse) SetDecentroTxnId

func (o *CheckImageQualityResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*CheckImageQualityResponse) SetMessage

func (o *CheckImageQualityResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*CheckImageQualityResponse) SetResponseCode

func (o *CheckImageQualityResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*CheckImageQualityResponse) SetStatus

func (o *CheckImageQualityResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type CheckImageQualityResponseData

type CheckImageQualityResponseData struct {
	ImageQuality *CheckImageQualityResponseDataImageQuality `json:"imageQuality,omitempty"`
}

CheckImageQualityResponseData struct for CheckImageQualityResponseData

func NewCheckImageQualityResponseData

func NewCheckImageQualityResponseData() *CheckImageQualityResponseData

NewCheckImageQualityResponseData instantiates a new CheckImageQualityResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckImageQualityResponseDataWithDefaults

func NewCheckImageQualityResponseDataWithDefaults() *CheckImageQualityResponseData

NewCheckImageQualityResponseDataWithDefaults instantiates a new CheckImageQualityResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckImageQualityResponseData) GetImageQuality

GetImageQuality returns the ImageQuality field value if set, zero value otherwise.

func (*CheckImageQualityResponseData) GetImageQualityOk

GetImageQualityOk returns a tuple with the ImageQuality field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseData) HasImageQuality

func (o *CheckImageQualityResponseData) HasImageQuality() bool

HasImageQuality returns a boolean if a field has been set.

func (CheckImageQualityResponseData) MarshalJSON

func (o CheckImageQualityResponseData) MarshalJSON() ([]byte, error)

func (*CheckImageQualityResponseData) SetImageQuality

SetImageQuality gets a reference to the given CheckImageQualityResponseDataImageQuality and assigns it to the ImageQuality field.

type CheckImageQualityResponseDataImageQuality

type CheckImageQualityResponseDataImageQuality struct {
	Summary           *string                                                 `json:"summary,omitempty"`
	QualityScores     *CheckImageQualityResponseDataImageQualityQualityScores `json:"qualityScores,omitempty"`
	ExtractionQuality *string                                                 `json:"extractionQuality,omitempty"`
	Score             *float32                                                `json:"score,omitempty"`
	Msg               *string                                                 `json:"msg,omitempty"`
}

CheckImageQualityResponseDataImageQuality struct for CheckImageQualityResponseDataImageQuality

func NewCheckImageQualityResponseDataImageQuality

func NewCheckImageQualityResponseDataImageQuality() *CheckImageQualityResponseDataImageQuality

NewCheckImageQualityResponseDataImageQuality instantiates a new CheckImageQualityResponseDataImageQuality object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckImageQualityResponseDataImageQualityWithDefaults

func NewCheckImageQualityResponseDataImageQualityWithDefaults() *CheckImageQualityResponseDataImageQuality

NewCheckImageQualityResponseDataImageQualityWithDefaults instantiates a new CheckImageQualityResponseDataImageQuality object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckImageQualityResponseDataImageQuality) GetExtractionQuality

func (o *CheckImageQualityResponseDataImageQuality) GetExtractionQuality() string

GetExtractionQuality returns the ExtractionQuality field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQuality) GetExtractionQualityOk

func (o *CheckImageQualityResponseDataImageQuality) GetExtractionQualityOk() (*string, bool)

GetExtractionQualityOk returns a tuple with the ExtractionQuality field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQuality) GetMsg

GetMsg returns the Msg field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQuality) GetMsgOk

GetMsgOk returns a tuple with the Msg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQuality) GetQualityScores

GetQualityScores returns the QualityScores field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQuality) GetQualityScoresOk

GetQualityScoresOk returns a tuple with the QualityScores field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQuality) GetScore

GetScore returns the Score field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQuality) GetScoreOk

GetScoreOk returns a tuple with the Score field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQuality) GetSummary

GetSummary returns the Summary field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQuality) GetSummaryOk

GetSummaryOk returns a tuple with the Summary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQuality) HasExtractionQuality

func (o *CheckImageQualityResponseDataImageQuality) HasExtractionQuality() bool

HasExtractionQuality returns a boolean if a field has been set.

func (*CheckImageQualityResponseDataImageQuality) HasMsg

HasMsg returns a boolean if a field has been set.

func (*CheckImageQualityResponseDataImageQuality) HasQualityScores

func (o *CheckImageQualityResponseDataImageQuality) HasQualityScores() bool

HasQualityScores returns a boolean if a field has been set.

func (*CheckImageQualityResponseDataImageQuality) HasScore

HasScore returns a boolean if a field has been set.

func (*CheckImageQualityResponseDataImageQuality) HasSummary

HasSummary returns a boolean if a field has been set.

func (CheckImageQualityResponseDataImageQuality) MarshalJSON

func (*CheckImageQualityResponseDataImageQuality) SetExtractionQuality

func (o *CheckImageQualityResponseDataImageQuality) SetExtractionQuality(v string)

SetExtractionQuality gets a reference to the given string and assigns it to the ExtractionQuality field.

func (*CheckImageQualityResponseDataImageQuality) SetMsg

SetMsg gets a reference to the given string and assigns it to the Msg field.

func (*CheckImageQualityResponseDataImageQuality) SetQualityScores

SetQualityScores gets a reference to the given CheckImageQualityResponseDataImageQualityQualityScores and assigns it to the QualityScores field.

func (*CheckImageQualityResponseDataImageQuality) SetScore

SetScore gets a reference to the given float32 and assigns it to the Score field.

func (*CheckImageQualityResponseDataImageQuality) SetSummary

SetSummary gets a reference to the given string and assigns it to the Summary field.

type CheckImageQualityResponseDataImageQualityQualityScores

type CheckImageQualityResponseDataImageQualityQualityScores struct {
	TextQuality        *CheckImageQualityResponseDataImageQualityQualityScoresTextQuality        `json:"textQuality,omitempty"`
	Sharpness          *CheckImageQualityResponseDataImageQualityQualityScoresSharpness          `json:"sharpness,omitempty"`
	Brightness         *CheckImageQualityResponseDataImageQualityQualityScoresBrightness         `json:"brightness,omitempty"`
	CompressionQuality *CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality `json:"compressionQuality,omitempty"`
}

CheckImageQualityResponseDataImageQualityQualityScores struct for CheckImageQualityResponseDataImageQualityQualityScores

func NewCheckImageQualityResponseDataImageQualityQualityScores

func NewCheckImageQualityResponseDataImageQualityQualityScores() *CheckImageQualityResponseDataImageQualityQualityScores

NewCheckImageQualityResponseDataImageQualityQualityScores instantiates a new CheckImageQualityResponseDataImageQualityQualityScores object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckImageQualityResponseDataImageQualityQualityScoresWithDefaults

func NewCheckImageQualityResponseDataImageQualityQualityScoresWithDefaults() *CheckImageQualityResponseDataImageQualityQualityScores

NewCheckImageQualityResponseDataImageQualityQualityScoresWithDefaults instantiates a new CheckImageQualityResponseDataImageQualityQualityScores object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckImageQualityResponseDataImageQualityQualityScores) GetBrightness

GetBrightness returns the Brightness field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQualityQualityScores) GetBrightnessOk

GetBrightnessOk returns a tuple with the Brightness field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScores) GetCompressionQuality

GetCompressionQuality returns the CompressionQuality field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQualityQualityScores) GetCompressionQualityOk

GetCompressionQualityOk returns a tuple with the CompressionQuality field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScores) GetSharpness

GetSharpness returns the Sharpness field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQualityQualityScores) GetSharpnessOk

GetSharpnessOk returns a tuple with the Sharpness field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScores) GetTextQuality

GetTextQuality returns the TextQuality field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQualityQualityScores) GetTextQualityOk

GetTextQualityOk returns a tuple with the TextQuality field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScores) HasBrightness

HasBrightness returns a boolean if a field has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScores) HasCompressionQuality

HasCompressionQuality returns a boolean if a field has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScores) HasSharpness

HasSharpness returns a boolean if a field has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScores) HasTextQuality

HasTextQuality returns a boolean if a field has been set.

func (CheckImageQualityResponseDataImageQualityQualityScores) MarshalJSON

func (*CheckImageQualityResponseDataImageQualityQualityScores) SetBrightness

SetBrightness gets a reference to the given CheckImageQualityResponseDataImageQualityQualityScoresBrightness and assigns it to the Brightness field.

func (*CheckImageQualityResponseDataImageQualityQualityScores) SetCompressionQuality

SetCompressionQuality gets a reference to the given CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality and assigns it to the CompressionQuality field.

func (*CheckImageQualityResponseDataImageQualityQualityScores) SetSharpness

SetSharpness gets a reference to the given CheckImageQualityResponseDataImageQualityQualityScoresSharpness and assigns it to the Sharpness field.

func (*CheckImageQualityResponseDataImageQualityQualityScores) SetTextQuality

SetTextQuality gets a reference to the given CheckImageQualityResponseDataImageQualityQualityScoresTextQuality and assigns it to the TextQuality field.

type CheckImageQualityResponseDataImageQualityQualityScoresBrightness

type CheckImageQualityResponseDataImageQualityQualityScoresBrightness struct {
	Valid *string  `json:"valid,omitempty"`
	Score *float32 `json:"score,omitempty"`
}

CheckImageQualityResponseDataImageQualityQualityScoresBrightness struct for CheckImageQualityResponseDataImageQualityQualityScoresBrightness

func NewCheckImageQualityResponseDataImageQualityQualityScoresBrightness

func NewCheckImageQualityResponseDataImageQualityQualityScoresBrightness() *CheckImageQualityResponseDataImageQualityQualityScoresBrightness

NewCheckImageQualityResponseDataImageQualityQualityScoresBrightness instantiates a new CheckImageQualityResponseDataImageQualityQualityScoresBrightness object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckImageQualityResponseDataImageQualityQualityScoresBrightnessWithDefaults

func NewCheckImageQualityResponseDataImageQualityQualityScoresBrightnessWithDefaults() *CheckImageQualityResponseDataImageQualityQualityScoresBrightness

NewCheckImageQualityResponseDataImageQualityQualityScoresBrightnessWithDefaults instantiates a new CheckImageQualityResponseDataImageQualityQualityScoresBrightness object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckImageQualityResponseDataImageQualityQualityScoresBrightness) GetScore

GetScore returns the Score field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQualityQualityScoresBrightness) GetScoreOk

GetScoreOk returns a tuple with the Score field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScoresBrightness) GetValid

GetValid returns the Valid field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQualityQualityScoresBrightness) GetValidOk

GetValidOk returns a tuple with the Valid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScoresBrightness) HasScore

HasScore returns a boolean if a field has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScoresBrightness) HasValid

HasValid returns a boolean if a field has been set.

func (CheckImageQualityResponseDataImageQualityQualityScoresBrightness) MarshalJSON

func (*CheckImageQualityResponseDataImageQualityQualityScoresBrightness) SetScore

SetScore gets a reference to the given float32 and assigns it to the Score field.

func (*CheckImageQualityResponseDataImageQualityQualityScoresBrightness) SetValid

SetValid gets a reference to the given string and assigns it to the Valid field.

type CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality

type CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality struct {
	Valid *string  `json:"valid,omitempty"`
	Score *float32 `json:"score,omitempty"`
}

CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality struct for CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality

func NewCheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality

func NewCheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality() *CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality

NewCheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality instantiates a new CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckImageQualityResponseDataImageQualityQualityScoresCompressionQualityWithDefaults

func NewCheckImageQualityResponseDataImageQualityQualityScoresCompressionQualityWithDefaults() *CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality

NewCheckImageQualityResponseDataImageQualityQualityScoresCompressionQualityWithDefaults instantiates a new CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) GetScore

GetScore returns the Score field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) GetScoreOk

GetScoreOk returns a tuple with the Score field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) GetValid

GetValid returns the Valid field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) GetValidOk

GetValidOk returns a tuple with the Valid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) HasScore

HasScore returns a boolean if a field has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) HasValid

HasValid returns a boolean if a field has been set.

func (CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) MarshalJSON

func (*CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) SetScore

SetScore gets a reference to the given float32 and assigns it to the Score field.

func (*CheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) SetValid

SetValid gets a reference to the given string and assigns it to the Valid field.

type CheckImageQualityResponseDataImageQualityQualityScoresSharpness

type CheckImageQualityResponseDataImageQualityQualityScoresSharpness struct {
	Valid *string  `json:"valid,omitempty"`
	Score *float32 `json:"score,omitempty"`
}

CheckImageQualityResponseDataImageQualityQualityScoresSharpness struct for CheckImageQualityResponseDataImageQualityQualityScoresSharpness

func NewCheckImageQualityResponseDataImageQualityQualityScoresSharpness

func NewCheckImageQualityResponseDataImageQualityQualityScoresSharpness() *CheckImageQualityResponseDataImageQualityQualityScoresSharpness

NewCheckImageQualityResponseDataImageQualityQualityScoresSharpness instantiates a new CheckImageQualityResponseDataImageQualityQualityScoresSharpness object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckImageQualityResponseDataImageQualityQualityScoresSharpnessWithDefaults

func NewCheckImageQualityResponseDataImageQualityQualityScoresSharpnessWithDefaults() *CheckImageQualityResponseDataImageQualityQualityScoresSharpness

NewCheckImageQualityResponseDataImageQualityQualityScoresSharpnessWithDefaults instantiates a new CheckImageQualityResponseDataImageQualityQualityScoresSharpness object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckImageQualityResponseDataImageQualityQualityScoresSharpness) GetScore

GetScore returns the Score field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQualityQualityScoresSharpness) GetScoreOk

GetScoreOk returns a tuple with the Score field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScoresSharpness) GetValid

GetValid returns the Valid field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQualityQualityScoresSharpness) GetValidOk

GetValidOk returns a tuple with the Valid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScoresSharpness) HasScore

HasScore returns a boolean if a field has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScoresSharpness) HasValid

HasValid returns a boolean if a field has been set.

func (CheckImageQualityResponseDataImageQualityQualityScoresSharpness) MarshalJSON

func (*CheckImageQualityResponseDataImageQualityQualityScoresSharpness) SetScore

SetScore gets a reference to the given float32 and assigns it to the Score field.

func (*CheckImageQualityResponseDataImageQualityQualityScoresSharpness) SetValid

SetValid gets a reference to the given string and assigns it to the Valid field.

type CheckImageQualityResponseDataImageQualityQualityScoresTextQuality

type CheckImageQualityResponseDataImageQualityQualityScoresTextQuality struct {
	Valid *string  `json:"valid,omitempty"`
	Score *float32 `json:"score,omitempty"`
}

CheckImageQualityResponseDataImageQualityQualityScoresTextQuality struct for CheckImageQualityResponseDataImageQualityQualityScoresTextQuality

func NewCheckImageQualityResponseDataImageQualityQualityScoresTextQuality

func NewCheckImageQualityResponseDataImageQualityQualityScoresTextQuality() *CheckImageQualityResponseDataImageQualityQualityScoresTextQuality

NewCheckImageQualityResponseDataImageQualityQualityScoresTextQuality instantiates a new CheckImageQualityResponseDataImageQualityQualityScoresTextQuality object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckImageQualityResponseDataImageQualityQualityScoresTextQualityWithDefaults

func NewCheckImageQualityResponseDataImageQualityQualityScoresTextQualityWithDefaults() *CheckImageQualityResponseDataImageQualityQualityScoresTextQuality

NewCheckImageQualityResponseDataImageQualityQualityScoresTextQualityWithDefaults instantiates a new CheckImageQualityResponseDataImageQualityQualityScoresTextQuality object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckImageQualityResponseDataImageQualityQualityScoresTextQuality) GetScore

GetScore returns the Score field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQualityQualityScoresTextQuality) GetScoreOk

GetScoreOk returns a tuple with the Score field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScoresTextQuality) GetValid

GetValid returns the Valid field value if set, zero value otherwise.

func (*CheckImageQualityResponseDataImageQualityQualityScoresTextQuality) GetValidOk

GetValidOk returns a tuple with the Valid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScoresTextQuality) HasScore

HasScore returns a boolean if a field has been set.

func (*CheckImageQualityResponseDataImageQualityQualityScoresTextQuality) HasValid

HasValid returns a boolean if a field has been set.

func (CheckImageQualityResponseDataImageQualityQualityScoresTextQuality) MarshalJSON

func (*CheckImageQualityResponseDataImageQualityQualityScoresTextQuality) SetScore

SetScore gets a reference to the given float32 and assigns it to the Score field.

func (*CheckImageQualityResponseDataImageQualityQualityScoresTextQuality) SetValid

SetValid gets a reference to the given string and assigns it to the Valid field.

type CheckPhotocopy400Response

type CheckPhotocopy400Response struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Status        *string `json:"status,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	Message       *string `json:"message,omitempty"`
}

CheckPhotocopy400Response struct for CheckPhotocopy400Response

func NewCheckPhotocopy400Response

func NewCheckPhotocopy400Response() *CheckPhotocopy400Response

NewCheckPhotocopy400Response instantiates a new CheckPhotocopy400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckPhotocopy400ResponseWithDefaults

func NewCheckPhotocopy400ResponseWithDefaults() *CheckPhotocopy400Response

NewCheckPhotocopy400ResponseWithDefaults instantiates a new CheckPhotocopy400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckPhotocopy400Response) GetDecentroTxnId

func (o *CheckPhotocopy400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*CheckPhotocopy400Response) GetDecentroTxnIdOk

func (o *CheckPhotocopy400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckPhotocopy400Response) GetMessage

func (o *CheckPhotocopy400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*CheckPhotocopy400Response) GetMessageOk

func (o *CheckPhotocopy400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckPhotocopy400Response) GetResponseCode

func (o *CheckPhotocopy400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*CheckPhotocopy400Response) GetResponseCodeOk

func (o *CheckPhotocopy400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckPhotocopy400Response) GetStatus

func (o *CheckPhotocopy400Response) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*CheckPhotocopy400Response) GetStatusOk

func (o *CheckPhotocopy400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckPhotocopy400Response) HasDecentroTxnId

func (o *CheckPhotocopy400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*CheckPhotocopy400Response) HasMessage

func (o *CheckPhotocopy400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*CheckPhotocopy400Response) HasResponseCode

func (o *CheckPhotocopy400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*CheckPhotocopy400Response) HasStatus

func (o *CheckPhotocopy400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (CheckPhotocopy400Response) MarshalJSON

func (o CheckPhotocopy400Response) MarshalJSON() ([]byte, error)

func (*CheckPhotocopy400Response) SetDecentroTxnId

func (o *CheckPhotocopy400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*CheckPhotocopy400Response) SetMessage

func (o *CheckPhotocopy400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*CheckPhotocopy400Response) SetResponseCode

func (o *CheckPhotocopy400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*CheckPhotocopy400Response) SetStatus

func (o *CheckPhotocopy400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type CheckPhotocopyRequest

type CheckPhotocopyRequest struct {
	//
	ReferenceId string `json:"reference_id"`
	//
	Consent bool `json:"consent"`
	//
	ConsentPurpose string    `json:"consent_purpose"`
	Image          **os.File `json:"image,omitempty"`
	ImageUrl       *string   `json:"image_url,omitempty"`
}

CheckPhotocopyRequest struct for CheckPhotocopyRequest

func NewCheckPhotocopyRequest

func NewCheckPhotocopyRequest(referenceId string, consent bool, consentPurpose string) *CheckPhotocopyRequest

NewCheckPhotocopyRequest instantiates a new CheckPhotocopyRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckPhotocopyRequestWithDefaults

func NewCheckPhotocopyRequestWithDefaults() *CheckPhotocopyRequest

NewCheckPhotocopyRequestWithDefaults instantiates a new CheckPhotocopyRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckPhotocopyRequest) GetConsent

func (o *CheckPhotocopyRequest) GetConsent() bool

GetConsent returns the Consent field value

func (*CheckPhotocopyRequest) GetConsentOk

func (o *CheckPhotocopyRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value and a boolean to check if the value has been set.

func (*CheckPhotocopyRequest) GetConsentPurpose

func (o *CheckPhotocopyRequest) GetConsentPurpose() string

GetConsentPurpose returns the ConsentPurpose field value

func (*CheckPhotocopyRequest) GetConsentPurposeOk

func (o *CheckPhotocopyRequest) GetConsentPurposeOk() (*string, bool)

GetConsentPurposeOk returns a tuple with the ConsentPurpose field value and a boolean to check if the value has been set.

func (*CheckPhotocopyRequest) GetImage

func (o *CheckPhotocopyRequest) GetImage() *os.File

GetImage returns the Image field value if set, zero value otherwise.

func (*CheckPhotocopyRequest) GetImageOk

func (o *CheckPhotocopyRequest) GetImageOk() (**os.File, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckPhotocopyRequest) GetImageUrl

func (o *CheckPhotocopyRequest) GetImageUrl() string

GetImageUrl returns the ImageUrl field value if set, zero value otherwise.

func (*CheckPhotocopyRequest) GetImageUrlOk

func (o *CheckPhotocopyRequest) GetImageUrlOk() (*string, bool)

GetImageUrlOk returns a tuple with the ImageUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckPhotocopyRequest) GetReferenceId

func (o *CheckPhotocopyRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value

func (*CheckPhotocopyRequest) GetReferenceIdOk

func (o *CheckPhotocopyRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value and a boolean to check if the value has been set.

func (*CheckPhotocopyRequest) HasImage

func (o *CheckPhotocopyRequest) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*CheckPhotocopyRequest) HasImageUrl

func (o *CheckPhotocopyRequest) HasImageUrl() bool

HasImageUrl returns a boolean if a field has been set.

func (CheckPhotocopyRequest) MarshalJSON

func (o CheckPhotocopyRequest) MarshalJSON() ([]byte, error)

func (*CheckPhotocopyRequest) SetConsent

func (o *CheckPhotocopyRequest) SetConsent(v bool)

SetConsent sets field value

func (*CheckPhotocopyRequest) SetConsentPurpose

func (o *CheckPhotocopyRequest) SetConsentPurpose(v string)

SetConsentPurpose sets field value

func (*CheckPhotocopyRequest) SetImage

func (o *CheckPhotocopyRequest) SetImage(v *os.File)

SetImage gets a reference to the given *os.File and assigns it to the Image field.

func (*CheckPhotocopyRequest) SetImageUrl

func (o *CheckPhotocopyRequest) SetImageUrl(v string)

SetImageUrl gets a reference to the given string and assigns it to the ImageUrl field.

func (*CheckPhotocopyRequest) SetReferenceId

func (o *CheckPhotocopyRequest) SetReferenceId(v string)

SetReferenceId sets field value

type CheckPhotocopyResponse

type CheckPhotocopyResponse struct {
	Data          *CheckPhotocopyResponseData `json:"data,omitempty"`
	DecentroTxnId *string                     `json:"decentroTxnId,omitempty"`
	Message       *string                     `json:"message,omitempty"`
	ResponseCode  *string                     `json:"responseCode,omitempty"`
	Status        *string                     `json:"status,omitempty"`
}

CheckPhotocopyResponse struct for CheckPhotocopyResponse

func NewCheckPhotocopyResponse

func NewCheckPhotocopyResponse() *CheckPhotocopyResponse

NewCheckPhotocopyResponse instantiates a new CheckPhotocopyResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckPhotocopyResponseWithDefaults

func NewCheckPhotocopyResponseWithDefaults() *CheckPhotocopyResponse

NewCheckPhotocopyResponseWithDefaults instantiates a new CheckPhotocopyResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckPhotocopyResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*CheckPhotocopyResponse) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckPhotocopyResponse) GetDecentroTxnId

func (o *CheckPhotocopyResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*CheckPhotocopyResponse) GetDecentroTxnIdOk

func (o *CheckPhotocopyResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckPhotocopyResponse) GetMessage

func (o *CheckPhotocopyResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*CheckPhotocopyResponse) GetMessageOk

func (o *CheckPhotocopyResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckPhotocopyResponse) GetResponseCode

func (o *CheckPhotocopyResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*CheckPhotocopyResponse) GetResponseCodeOk

func (o *CheckPhotocopyResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckPhotocopyResponse) GetStatus

func (o *CheckPhotocopyResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*CheckPhotocopyResponse) GetStatusOk

func (o *CheckPhotocopyResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckPhotocopyResponse) HasData

func (o *CheckPhotocopyResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*CheckPhotocopyResponse) HasDecentroTxnId

func (o *CheckPhotocopyResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*CheckPhotocopyResponse) HasMessage

func (o *CheckPhotocopyResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*CheckPhotocopyResponse) HasResponseCode

func (o *CheckPhotocopyResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*CheckPhotocopyResponse) HasStatus

func (o *CheckPhotocopyResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (CheckPhotocopyResponse) MarshalJSON

func (o CheckPhotocopyResponse) MarshalJSON() ([]byte, error)

func (*CheckPhotocopyResponse) SetData

SetData gets a reference to the given CheckPhotocopyResponseData and assigns it to the Data field.

func (*CheckPhotocopyResponse) SetDecentroTxnId

func (o *CheckPhotocopyResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*CheckPhotocopyResponse) SetMessage

func (o *CheckPhotocopyResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*CheckPhotocopyResponse) SetResponseCode

func (o *CheckPhotocopyResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*CheckPhotocopyResponse) SetStatus

func (o *CheckPhotocopyResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type CheckPhotocopyResponseData

type CheckPhotocopyResponseData struct {
	IsPhotocopy *string `json:"isPhotocopy,omitempty"`
	Score       *string `json:"score,omitempty"`
}

CheckPhotocopyResponseData struct for CheckPhotocopyResponseData

func NewCheckPhotocopyResponseData

func NewCheckPhotocopyResponseData() *CheckPhotocopyResponseData

NewCheckPhotocopyResponseData instantiates a new CheckPhotocopyResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckPhotocopyResponseDataWithDefaults

func NewCheckPhotocopyResponseDataWithDefaults() *CheckPhotocopyResponseData

NewCheckPhotocopyResponseDataWithDefaults instantiates a new CheckPhotocopyResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckPhotocopyResponseData) GetIsPhotocopy

func (o *CheckPhotocopyResponseData) GetIsPhotocopy() string

GetIsPhotocopy returns the IsPhotocopy field value if set, zero value otherwise.

func (*CheckPhotocopyResponseData) GetIsPhotocopyOk

func (o *CheckPhotocopyResponseData) GetIsPhotocopyOk() (*string, bool)

GetIsPhotocopyOk returns a tuple with the IsPhotocopy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckPhotocopyResponseData) GetScore

func (o *CheckPhotocopyResponseData) GetScore() string

GetScore returns the Score field value if set, zero value otherwise.

func (*CheckPhotocopyResponseData) GetScoreOk

func (o *CheckPhotocopyResponseData) GetScoreOk() (*string, bool)

GetScoreOk returns a tuple with the Score field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckPhotocopyResponseData) HasIsPhotocopy

func (o *CheckPhotocopyResponseData) HasIsPhotocopy() bool

HasIsPhotocopy returns a boolean if a field has been set.

func (*CheckPhotocopyResponseData) HasScore

func (o *CheckPhotocopyResponseData) HasScore() bool

HasScore returns a boolean if a field has been set.

func (CheckPhotocopyResponseData) MarshalJSON

func (o CheckPhotocopyResponseData) MarshalJSON() ([]byte, error)

func (*CheckPhotocopyResponseData) SetIsPhotocopy

func (o *CheckPhotocopyResponseData) SetIsPhotocopy(v string)

SetIsPhotocopy gets a reference to the given string and assigns it to the IsPhotocopy field.

func (*CheckPhotocopyResponseData) SetScore

func (o *CheckPhotocopyResponseData) SetScore(v string)

SetScore gets a reference to the given string and assigns it to the Score field.

type CheckVideoLiveness400Response

type CheckVideoLiveness400Response struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Status        *string `json:"status,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	Message       *string `json:"message,omitempty"`
}

CheckVideoLiveness400Response struct for CheckVideoLiveness400Response

func NewCheckVideoLiveness400Response

func NewCheckVideoLiveness400Response() *CheckVideoLiveness400Response

NewCheckVideoLiveness400Response instantiates a new CheckVideoLiveness400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckVideoLiveness400ResponseWithDefaults

func NewCheckVideoLiveness400ResponseWithDefaults() *CheckVideoLiveness400Response

NewCheckVideoLiveness400ResponseWithDefaults instantiates a new CheckVideoLiveness400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckVideoLiveness400Response) GetDecentroTxnId

func (o *CheckVideoLiveness400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*CheckVideoLiveness400Response) GetDecentroTxnIdOk

func (o *CheckVideoLiveness400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckVideoLiveness400Response) GetMessage

func (o *CheckVideoLiveness400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*CheckVideoLiveness400Response) GetMessageOk

func (o *CheckVideoLiveness400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckVideoLiveness400Response) GetResponseCode

func (o *CheckVideoLiveness400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*CheckVideoLiveness400Response) GetResponseCodeOk

func (o *CheckVideoLiveness400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckVideoLiveness400Response) GetStatus

func (o *CheckVideoLiveness400Response) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*CheckVideoLiveness400Response) GetStatusOk

func (o *CheckVideoLiveness400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckVideoLiveness400Response) HasDecentroTxnId

func (o *CheckVideoLiveness400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*CheckVideoLiveness400Response) HasMessage

func (o *CheckVideoLiveness400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*CheckVideoLiveness400Response) HasResponseCode

func (o *CheckVideoLiveness400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*CheckVideoLiveness400Response) HasStatus

func (o *CheckVideoLiveness400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (CheckVideoLiveness400Response) MarshalJSON

func (o CheckVideoLiveness400Response) MarshalJSON() ([]byte, error)

func (*CheckVideoLiveness400Response) SetDecentroTxnId

func (o *CheckVideoLiveness400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*CheckVideoLiveness400Response) SetMessage

func (o *CheckVideoLiveness400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*CheckVideoLiveness400Response) SetResponseCode

func (o *CheckVideoLiveness400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*CheckVideoLiveness400Response) SetStatus

func (o *CheckVideoLiveness400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type CheckVideoLivenessRequest

type CheckVideoLivenessRequest struct {
	//
	ReferenceId string `json:"reference_id"`
	//
	Consent string `json:"consent"`
	//
	ConsentPurpose string    `json:"consent_purpose"`
	Video          **os.File `json:"video,omitempty"`
	VideoUrl       *string   `json:"video_url,omitempty"`
}

CheckVideoLivenessRequest struct for CheckVideoLivenessRequest

func NewCheckVideoLivenessRequest

func NewCheckVideoLivenessRequest(referenceId string, consent string, consentPurpose string) *CheckVideoLivenessRequest

NewCheckVideoLivenessRequest instantiates a new CheckVideoLivenessRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckVideoLivenessRequestWithDefaults

func NewCheckVideoLivenessRequestWithDefaults() *CheckVideoLivenessRequest

NewCheckVideoLivenessRequestWithDefaults instantiates a new CheckVideoLivenessRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckVideoLivenessRequest) GetConsent

func (o *CheckVideoLivenessRequest) GetConsent() string

GetConsent returns the Consent field value

func (*CheckVideoLivenessRequest) GetConsentOk

func (o *CheckVideoLivenessRequest) GetConsentOk() (*string, bool)

GetConsentOk returns a tuple with the Consent field value and a boolean to check if the value has been set.

func (*CheckVideoLivenessRequest) GetConsentPurpose

func (o *CheckVideoLivenessRequest) GetConsentPurpose() string

GetConsentPurpose returns the ConsentPurpose field value

func (*CheckVideoLivenessRequest) GetConsentPurposeOk

func (o *CheckVideoLivenessRequest) GetConsentPurposeOk() (*string, bool)

GetConsentPurposeOk returns a tuple with the ConsentPurpose field value and a boolean to check if the value has been set.

func (*CheckVideoLivenessRequest) GetReferenceId

func (o *CheckVideoLivenessRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value

func (*CheckVideoLivenessRequest) GetReferenceIdOk

func (o *CheckVideoLivenessRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value and a boolean to check if the value has been set.

func (*CheckVideoLivenessRequest) GetVideo

func (o *CheckVideoLivenessRequest) GetVideo() *os.File

GetVideo returns the Video field value if set, zero value otherwise.

func (*CheckVideoLivenessRequest) GetVideoOk

func (o *CheckVideoLivenessRequest) GetVideoOk() (**os.File, bool)

GetVideoOk returns a tuple with the Video field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckVideoLivenessRequest) GetVideoUrl

func (o *CheckVideoLivenessRequest) GetVideoUrl() string

GetVideoUrl returns the VideoUrl field value if set, zero value otherwise.

func (*CheckVideoLivenessRequest) GetVideoUrlOk

func (o *CheckVideoLivenessRequest) GetVideoUrlOk() (*string, bool)

GetVideoUrlOk returns a tuple with the VideoUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckVideoLivenessRequest) HasVideo

func (o *CheckVideoLivenessRequest) HasVideo() bool

HasVideo returns a boolean if a field has been set.

func (*CheckVideoLivenessRequest) HasVideoUrl

func (o *CheckVideoLivenessRequest) HasVideoUrl() bool

HasVideoUrl returns a boolean if a field has been set.

func (CheckVideoLivenessRequest) MarshalJSON

func (o CheckVideoLivenessRequest) MarshalJSON() ([]byte, error)

func (*CheckVideoLivenessRequest) SetConsent

func (o *CheckVideoLivenessRequest) SetConsent(v string)

SetConsent sets field value

func (*CheckVideoLivenessRequest) SetConsentPurpose

func (o *CheckVideoLivenessRequest) SetConsentPurpose(v string)

SetConsentPurpose sets field value

func (*CheckVideoLivenessRequest) SetReferenceId

func (o *CheckVideoLivenessRequest) SetReferenceId(v string)

SetReferenceId sets field value

func (*CheckVideoLivenessRequest) SetVideo

func (o *CheckVideoLivenessRequest) SetVideo(v *os.File)

SetVideo gets a reference to the given *os.File and assigns it to the Video field.

func (*CheckVideoLivenessRequest) SetVideoUrl

func (o *CheckVideoLivenessRequest) SetVideoUrl(v string)

SetVideoUrl gets a reference to the given string and assigns it to the VideoUrl field.

type CheckVideoLivenessResponse

type CheckVideoLivenessResponse struct {
	Data          *CheckVideoLivenessResponseData `json:"data,omitempty"`
	DecentroTxnId *string                         `json:"decentroTxnId,omitempty"`
	Message       *string                         `json:"message,omitempty"`
	ResponseCode  *string                         `json:"responseCode,omitempty"`
	Status        *string                         `json:"status,omitempty"`
}

CheckVideoLivenessResponse struct for CheckVideoLivenessResponse

func NewCheckVideoLivenessResponse

func NewCheckVideoLivenessResponse() *CheckVideoLivenessResponse

NewCheckVideoLivenessResponse instantiates a new CheckVideoLivenessResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckVideoLivenessResponseWithDefaults

func NewCheckVideoLivenessResponseWithDefaults() *CheckVideoLivenessResponse

NewCheckVideoLivenessResponseWithDefaults instantiates a new CheckVideoLivenessResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckVideoLivenessResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*CheckVideoLivenessResponse) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckVideoLivenessResponse) GetDecentroTxnId

func (o *CheckVideoLivenessResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*CheckVideoLivenessResponse) GetDecentroTxnIdOk

func (o *CheckVideoLivenessResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckVideoLivenessResponse) GetMessage

func (o *CheckVideoLivenessResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*CheckVideoLivenessResponse) GetMessageOk

func (o *CheckVideoLivenessResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckVideoLivenessResponse) GetResponseCode

func (o *CheckVideoLivenessResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*CheckVideoLivenessResponse) GetResponseCodeOk

func (o *CheckVideoLivenessResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckVideoLivenessResponse) GetStatus

func (o *CheckVideoLivenessResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*CheckVideoLivenessResponse) GetStatusOk

func (o *CheckVideoLivenessResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckVideoLivenessResponse) HasData

func (o *CheckVideoLivenessResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*CheckVideoLivenessResponse) HasDecentroTxnId

func (o *CheckVideoLivenessResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*CheckVideoLivenessResponse) HasMessage

func (o *CheckVideoLivenessResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*CheckVideoLivenessResponse) HasResponseCode

func (o *CheckVideoLivenessResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*CheckVideoLivenessResponse) HasStatus

func (o *CheckVideoLivenessResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (CheckVideoLivenessResponse) MarshalJSON

func (o CheckVideoLivenessResponse) MarshalJSON() ([]byte, error)

func (*CheckVideoLivenessResponse) SetData

SetData gets a reference to the given CheckVideoLivenessResponseData and assigns it to the Data field.

func (*CheckVideoLivenessResponse) SetDecentroTxnId

func (o *CheckVideoLivenessResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*CheckVideoLivenessResponse) SetMessage

func (o *CheckVideoLivenessResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*CheckVideoLivenessResponse) SetResponseCode

func (o *CheckVideoLivenessResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*CheckVideoLivenessResponse) SetStatus

func (o *CheckVideoLivenessResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type CheckVideoLivenessResponseData

type CheckVideoLivenessResponseData struct {
	Confidence *string `json:"confidence,omitempty"`
	Status     *string `json:"status,omitempty"`
}

CheckVideoLivenessResponseData struct for CheckVideoLivenessResponseData

func NewCheckVideoLivenessResponseData

func NewCheckVideoLivenessResponseData() *CheckVideoLivenessResponseData

NewCheckVideoLivenessResponseData instantiates a new CheckVideoLivenessResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCheckVideoLivenessResponseDataWithDefaults

func NewCheckVideoLivenessResponseDataWithDefaults() *CheckVideoLivenessResponseData

NewCheckVideoLivenessResponseDataWithDefaults instantiates a new CheckVideoLivenessResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CheckVideoLivenessResponseData) GetConfidence

func (o *CheckVideoLivenessResponseData) GetConfidence() string

GetConfidence returns the Confidence field value if set, zero value otherwise.

func (*CheckVideoLivenessResponseData) GetConfidenceOk

func (o *CheckVideoLivenessResponseData) GetConfidenceOk() (*string, bool)

GetConfidenceOk returns a tuple with the Confidence field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckVideoLivenessResponseData) GetStatus

func (o *CheckVideoLivenessResponseData) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*CheckVideoLivenessResponseData) GetStatusOk

func (o *CheckVideoLivenessResponseData) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CheckVideoLivenessResponseData) HasConfidence

func (o *CheckVideoLivenessResponseData) HasConfidence() bool

HasConfidence returns a boolean if a field has been set.

func (*CheckVideoLivenessResponseData) HasStatus

func (o *CheckVideoLivenessResponseData) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (CheckVideoLivenessResponseData) MarshalJSON

func (o CheckVideoLivenessResponseData) MarshalJSON() ([]byte, error)

func (*CheckVideoLivenessResponseData) SetConfidence

func (o *CheckVideoLivenessResponseData) SetConfidence(v string)

SetConfidence gets a reference to the given string and assigns it to the Confidence field.

func (*CheckVideoLivenessResponseData) SetStatus

func (o *CheckVideoLivenessResponseData) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type ClassifyDocument400Response

type ClassifyDocument400Response struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Status        *string `json:"status,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	Message       *string `json:"message,omitempty"`
}

ClassifyDocument400Response struct for ClassifyDocument400Response

func NewClassifyDocument400Response

func NewClassifyDocument400Response() *ClassifyDocument400Response

NewClassifyDocument400Response instantiates a new ClassifyDocument400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewClassifyDocument400ResponseWithDefaults

func NewClassifyDocument400ResponseWithDefaults() *ClassifyDocument400Response

NewClassifyDocument400ResponseWithDefaults instantiates a new ClassifyDocument400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ClassifyDocument400Response) GetDecentroTxnId

func (o *ClassifyDocument400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*ClassifyDocument400Response) GetDecentroTxnIdOk

func (o *ClassifyDocument400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClassifyDocument400Response) GetMessage

func (o *ClassifyDocument400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ClassifyDocument400Response) GetMessageOk

func (o *ClassifyDocument400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClassifyDocument400Response) GetResponseCode

func (o *ClassifyDocument400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*ClassifyDocument400Response) GetResponseCodeOk

func (o *ClassifyDocument400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClassifyDocument400Response) GetStatus

func (o *ClassifyDocument400Response) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*ClassifyDocument400Response) GetStatusOk

func (o *ClassifyDocument400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClassifyDocument400Response) HasDecentroTxnId

func (o *ClassifyDocument400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*ClassifyDocument400Response) HasMessage

func (o *ClassifyDocument400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ClassifyDocument400Response) HasResponseCode

func (o *ClassifyDocument400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*ClassifyDocument400Response) HasStatus

func (o *ClassifyDocument400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ClassifyDocument400Response) MarshalJSON

func (o ClassifyDocument400Response) MarshalJSON() ([]byte, error)

func (*ClassifyDocument400Response) SetDecentroTxnId

func (o *ClassifyDocument400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*ClassifyDocument400Response) SetMessage

func (o *ClassifyDocument400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ClassifyDocument400Response) SetResponseCode

func (o *ClassifyDocument400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*ClassifyDocument400Response) SetStatus

func (o *ClassifyDocument400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type ClassifyDocumentRequest

type ClassifyDocumentRequest struct {
	//
	ReferenceId string `json:"reference_id"`
	//
	DocumentType string `json:"document_type"`
	//
	Consent bool `json:"consent"`
	//
	ConsentPurpose string    `json:"consent_purpose"`
	Document       **os.File `json:"document,omitempty"`
	DocumentUrl    *string   `json:"document_url,omitempty"`
}

ClassifyDocumentRequest struct for ClassifyDocumentRequest

func NewClassifyDocumentRequest

func NewClassifyDocumentRequest(referenceId string, documentType string, consent bool, consentPurpose string) *ClassifyDocumentRequest

NewClassifyDocumentRequest instantiates a new ClassifyDocumentRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewClassifyDocumentRequestWithDefaults

func NewClassifyDocumentRequestWithDefaults() *ClassifyDocumentRequest

NewClassifyDocumentRequestWithDefaults instantiates a new ClassifyDocumentRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ClassifyDocumentRequest) GetConsent

func (o *ClassifyDocumentRequest) GetConsent() bool

GetConsent returns the Consent field value

func (*ClassifyDocumentRequest) GetConsentOk

func (o *ClassifyDocumentRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value and a boolean to check if the value has been set.

func (*ClassifyDocumentRequest) GetConsentPurpose

func (o *ClassifyDocumentRequest) GetConsentPurpose() string

GetConsentPurpose returns the ConsentPurpose field value

func (*ClassifyDocumentRequest) GetConsentPurposeOk

func (o *ClassifyDocumentRequest) GetConsentPurposeOk() (*string, bool)

GetConsentPurposeOk returns a tuple with the ConsentPurpose field value and a boolean to check if the value has been set.

func (*ClassifyDocumentRequest) GetDocument

func (o *ClassifyDocumentRequest) GetDocument() *os.File

GetDocument returns the Document field value if set, zero value otherwise.

func (*ClassifyDocumentRequest) GetDocumentOk

func (o *ClassifyDocumentRequest) GetDocumentOk() (**os.File, bool)

GetDocumentOk returns a tuple with the Document field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClassifyDocumentRequest) GetDocumentType

func (o *ClassifyDocumentRequest) GetDocumentType() string

GetDocumentType returns the DocumentType field value

func (*ClassifyDocumentRequest) GetDocumentTypeOk

func (o *ClassifyDocumentRequest) GetDocumentTypeOk() (*string, bool)

GetDocumentTypeOk returns a tuple with the DocumentType field value and a boolean to check if the value has been set.

func (*ClassifyDocumentRequest) GetDocumentUrl

func (o *ClassifyDocumentRequest) GetDocumentUrl() string

GetDocumentUrl returns the DocumentUrl field value if set, zero value otherwise.

func (*ClassifyDocumentRequest) GetDocumentUrlOk

func (o *ClassifyDocumentRequest) GetDocumentUrlOk() (*string, bool)

GetDocumentUrlOk returns a tuple with the DocumentUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClassifyDocumentRequest) GetReferenceId

func (o *ClassifyDocumentRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value

func (*ClassifyDocumentRequest) GetReferenceIdOk

func (o *ClassifyDocumentRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value and a boolean to check if the value has been set.

func (*ClassifyDocumentRequest) HasDocument

func (o *ClassifyDocumentRequest) HasDocument() bool

HasDocument returns a boolean if a field has been set.

func (*ClassifyDocumentRequest) HasDocumentUrl

func (o *ClassifyDocumentRequest) HasDocumentUrl() bool

HasDocumentUrl returns a boolean if a field has been set.

func (ClassifyDocumentRequest) MarshalJSON

func (o ClassifyDocumentRequest) MarshalJSON() ([]byte, error)

func (*ClassifyDocumentRequest) SetConsent

func (o *ClassifyDocumentRequest) SetConsent(v bool)

SetConsent sets field value

func (*ClassifyDocumentRequest) SetConsentPurpose

func (o *ClassifyDocumentRequest) SetConsentPurpose(v string)

SetConsentPurpose sets field value

func (*ClassifyDocumentRequest) SetDocument

func (o *ClassifyDocumentRequest) SetDocument(v *os.File)

SetDocument gets a reference to the given *os.File and assigns it to the Document field.

func (*ClassifyDocumentRequest) SetDocumentType

func (o *ClassifyDocumentRequest) SetDocumentType(v string)

SetDocumentType sets field value

func (*ClassifyDocumentRequest) SetDocumentUrl

func (o *ClassifyDocumentRequest) SetDocumentUrl(v string)

SetDocumentUrl gets a reference to the given string and assigns it to the DocumentUrl field.

func (*ClassifyDocumentRequest) SetReferenceId

func (o *ClassifyDocumentRequest) SetReferenceId(v string)

SetReferenceId sets field value

type ClassifyDocumentResponse

type ClassifyDocumentResponse struct {
	Data          *ClassifyDocumentResponseData `json:"data,omitempty"`
	DecentroTxnId *string                       `json:"decentroTxnId,omitempty"`
	Message       *string                       `json:"message,omitempty"`
	ResponseCode  *string                       `json:"responseCode,omitempty"`
	Status        *string                       `json:"status,omitempty"`
}

ClassifyDocumentResponse struct for ClassifyDocumentResponse

func NewClassifyDocumentResponse

func NewClassifyDocumentResponse() *ClassifyDocumentResponse

NewClassifyDocumentResponse instantiates a new ClassifyDocumentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewClassifyDocumentResponseWithDefaults

func NewClassifyDocumentResponseWithDefaults() *ClassifyDocumentResponse

NewClassifyDocumentResponseWithDefaults instantiates a new ClassifyDocumentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ClassifyDocumentResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*ClassifyDocumentResponse) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClassifyDocumentResponse) GetDecentroTxnId

func (o *ClassifyDocumentResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*ClassifyDocumentResponse) GetDecentroTxnIdOk

func (o *ClassifyDocumentResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClassifyDocumentResponse) GetMessage

func (o *ClassifyDocumentResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ClassifyDocumentResponse) GetMessageOk

func (o *ClassifyDocumentResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClassifyDocumentResponse) GetResponseCode

func (o *ClassifyDocumentResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*ClassifyDocumentResponse) GetResponseCodeOk

func (o *ClassifyDocumentResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClassifyDocumentResponse) GetStatus

func (o *ClassifyDocumentResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*ClassifyDocumentResponse) GetStatusOk

func (o *ClassifyDocumentResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClassifyDocumentResponse) HasData

func (o *ClassifyDocumentResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*ClassifyDocumentResponse) HasDecentroTxnId

func (o *ClassifyDocumentResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*ClassifyDocumentResponse) HasMessage

func (o *ClassifyDocumentResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ClassifyDocumentResponse) HasResponseCode

func (o *ClassifyDocumentResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*ClassifyDocumentResponse) HasStatus

func (o *ClassifyDocumentResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ClassifyDocumentResponse) MarshalJSON

func (o ClassifyDocumentResponse) MarshalJSON() ([]byte, error)

func (*ClassifyDocumentResponse) SetData

SetData gets a reference to the given ClassifyDocumentResponseData and assigns it to the Data field.

func (*ClassifyDocumentResponse) SetDecentroTxnId

func (o *ClassifyDocumentResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*ClassifyDocumentResponse) SetMessage

func (o *ClassifyDocumentResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ClassifyDocumentResponse) SetResponseCode

func (o *ClassifyDocumentResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*ClassifyDocumentResponse) SetStatus

func (o *ClassifyDocumentResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type ClassifyDocumentResponseData

type ClassifyDocumentResponseData struct {
	DocumentClassificationStatus *string `json:"documentClassificationStatus,omitempty"`
	IdTypeClassified             *string `json:"idTypeClassified,omitempty"`
}

ClassifyDocumentResponseData struct for ClassifyDocumentResponseData

func NewClassifyDocumentResponseData

func NewClassifyDocumentResponseData() *ClassifyDocumentResponseData

NewClassifyDocumentResponseData instantiates a new ClassifyDocumentResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewClassifyDocumentResponseDataWithDefaults

func NewClassifyDocumentResponseDataWithDefaults() *ClassifyDocumentResponseData

NewClassifyDocumentResponseDataWithDefaults instantiates a new ClassifyDocumentResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ClassifyDocumentResponseData) GetDocumentClassificationStatus

func (o *ClassifyDocumentResponseData) GetDocumentClassificationStatus() string

GetDocumentClassificationStatus returns the DocumentClassificationStatus field value if set, zero value otherwise.

func (*ClassifyDocumentResponseData) GetDocumentClassificationStatusOk

func (o *ClassifyDocumentResponseData) GetDocumentClassificationStatusOk() (*string, bool)

GetDocumentClassificationStatusOk returns a tuple with the DocumentClassificationStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClassifyDocumentResponseData) GetIdTypeClassified

func (o *ClassifyDocumentResponseData) GetIdTypeClassified() string

GetIdTypeClassified returns the IdTypeClassified field value if set, zero value otherwise.

func (*ClassifyDocumentResponseData) GetIdTypeClassifiedOk

func (o *ClassifyDocumentResponseData) GetIdTypeClassifiedOk() (*string, bool)

GetIdTypeClassifiedOk returns a tuple with the IdTypeClassified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ClassifyDocumentResponseData) HasDocumentClassificationStatus

func (o *ClassifyDocumentResponseData) HasDocumentClassificationStatus() bool

HasDocumentClassificationStatus returns a boolean if a field has been set.

func (*ClassifyDocumentResponseData) HasIdTypeClassified

func (o *ClassifyDocumentResponseData) HasIdTypeClassified() bool

HasIdTypeClassified returns a boolean if a field has been set.

func (ClassifyDocumentResponseData) MarshalJSON

func (o ClassifyDocumentResponseData) MarshalJSON() ([]byte, error)

func (*ClassifyDocumentResponseData) SetDocumentClassificationStatus

func (o *ClassifyDocumentResponseData) SetDocumentClassificationStatus(v string)

SetDocumentClassificationStatus gets a reference to the given string and assigns it to the DocumentClassificationStatus field.

func (*ClassifyDocumentResponseData) SetIdTypeClassified

func (o *ClassifyDocumentResponseData) SetIdTypeClassified(v string)

SetIdTypeClassified gets a reference to the given string and assigns it to the IdTypeClassified field.

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	TokenUrl         string            `json:"tokenUrl,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
	Context          context.Context
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddAPIKey

func (c *Configuration) AddAPIKey(key string, apiKey APIKey)

Configures an API key on Configuration. Ensures multiple calls does not delete other keys

1. Get the existing map of API keys from the context. 2. If there's no existing map, create a new map. 3. Update the "[API key]"" in the map. 4. Store the updated map back in the context.

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

func (*Configuration) SetClientId

func (c *Configuration) SetClientId(clientId string)

func (*Configuration) SetClientSecret

func (c *Configuration) SetClientSecret(clientSecret string)

func (*Configuration) SetHost

func (c *Configuration) SetHost(host string)

func (*Configuration) SetModuleSecret

func (c *Configuration) SetModuleSecret(moduleSecret string)

func (*Configuration) SetOAuthClientCredentials

func (c *Configuration) SetOAuthClientCredentials(clientId string, clientSecret string)

Setup OAuth Client Credentials Flow for all requests

func (*Configuration) SetTokenUrl

func (c *Configuration) SetTokenUrl(tokenUrl string)

type DigilockerApiDownloadFileRequest

type DigilockerApiDownloadFileRequest struct {
	ApiService *DigilockerApiService
	// contains filtered or unexported fields
}

func (DigilockerApiDownloadFileRequest) Execute

type DigilockerApiEAadhaarRequest

type DigilockerApiEAadhaarRequest struct {
	ApiService *DigilockerApiService
	// contains filtered or unexported fields
}

func (DigilockerApiEAadhaarRequest) Execute

type DigilockerApiFileDataRequest

type DigilockerApiFileDataRequest struct {
	ApiService *DigilockerApiService
	// contains filtered or unexported fields
}

func (DigilockerApiFileDataRequest) Execute

type DigilockerApiGenerateAccessTokenRequest

type DigilockerApiGenerateAccessTokenRequest struct {
	ApiService *DigilockerApiService
	// contains filtered or unexported fields
}

func (DigilockerApiGenerateAccessTokenRequest) Execute

type DigilockerApiInitiateSessionRequest

type DigilockerApiInitiateSessionRequest struct {
	ApiService *DigilockerApiService
	// contains filtered or unexported fields
}

func (DigilockerApiInitiateSessionRequest) Execute

type DigilockerApiIssuedFilesRequest

type DigilockerApiIssuedFilesRequest struct {
	ApiService *DigilockerApiService
	// contains filtered or unexported fields
}

func (DigilockerApiIssuedFilesRequest) Execute

type DigilockerApiPullFileRequest

type DigilockerApiPullFileRequest struct {
	ApiService *DigilockerApiService
	// contains filtered or unexported fields
}

func (DigilockerApiPullFileRequest) Execute

type DigilockerApiRevokeTokenRequest

type DigilockerApiRevokeTokenRequest struct {
	ApiService *DigilockerApiService
	// contains filtered or unexported fields
}

func (DigilockerApiRevokeTokenRequest) Execute

type DigilockerApiService

type DigilockerApiService service

DigilockerApiService DigilockerApi service

func (*DigilockerApiService) DownloadFile

func (a *DigilockerApiService) DownloadFile(initialDecentroTxnId string, digilockerDownloadFileRequest DigilockerDownloadFileRequest) DigilockerApiDownloadFileRequest

DownloadFile Download File

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param initialDecentroTxnId
@param digilockerDownloadFileRequest
@return DigilockerApiDownloadFileRequest

func (*DigilockerApiService) DownloadFileExecute

Execute executes the request

@return DigilockerDownloadFileResponse

func (*DigilockerApiService) EAadhaar

func (a *DigilockerApiService) EAadhaar(initialDecentroTxnId string, digilockerEAadhaarRequest DigilockerEAadhaarRequest) DigilockerApiEAadhaarRequest

EAadhaar eAadhaar

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param initialDecentroTxnId
@param digilockerEAadhaarRequest
@return DigilockerApiEAadhaarRequest

func (*DigilockerApiService) EAadhaarExecute

Execute executes the request

@return DigilockerEAadhaarResponse

func (*DigilockerApiService) FileData

func (a *DigilockerApiService) FileData(initialDecentroTxnId string, digilockerFileDataRequest DigilockerFileDataRequest) DigilockerApiFileDataRequest

FileData File Data

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param initialDecentroTxnId
@param digilockerFileDataRequest
@return DigilockerApiFileDataRequest

func (*DigilockerApiService) FileDataExecute

Execute executes the request

@return DigilockerFileDataResponse

func (*DigilockerApiService) GenerateAccessToken

func (a *DigilockerApiService) GenerateAccessToken(initialDecentroTxnId string, digilockerGenerateAccessTokenRequest DigilockerGenerateAccessTokenRequest) DigilockerApiGenerateAccessTokenRequest

GenerateAccessToken Access Token

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param initialDecentroTxnId
@param digilockerGenerateAccessTokenRequest
@return DigilockerApiGenerateAccessTokenRequest

func (*DigilockerApiService) GenerateAccessTokenExecute

Execute executes the request

@return DigilockerGenerateAccessTokenResponse

func (*DigilockerApiService) InitiateSession

func (a *DigilockerApiService) InitiateSession(digilockerInitiateSessionRequest DigilockerInitiateSessionRequest) DigilockerApiInitiateSessionRequest

InitiateSession Initiate Session

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param digilockerInitiateSessionRequest
@return DigilockerApiInitiateSessionRequest

func (*DigilockerApiService) InitiateSessionExecute

Execute executes the request

@return DigilockerInitiateSessionResponse

func (*DigilockerApiService) IssuedFiles

func (a *DigilockerApiService) IssuedFiles(initialDecentroTxnId string, digilockerIssuedFilesRequest DigilockerIssuedFilesRequest) DigilockerApiIssuedFilesRequest

IssuedFiles Issued Files

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param initialDecentroTxnId
@param digilockerIssuedFilesRequest
@return DigilockerApiIssuedFilesRequest

func (*DigilockerApiService) IssuedFilesExecute

Execute executes the request

@return DigilockerIssuedFilesResponse

func (*DigilockerApiService) PullFile

func (a *DigilockerApiService) PullFile(initialDecentroTxnId string, digilockerPullFileRequest DigilockerPullFileRequest) DigilockerApiPullFileRequest

PullFile Pull File

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param initialDecentroTxnId
@param digilockerPullFileRequest
@return DigilockerApiPullFileRequest

func (*DigilockerApiService) PullFileExecute

Execute executes the request

@return DigilockerPullFileResponse

func (*DigilockerApiService) RevokeToken

func (a *DigilockerApiService) RevokeToken(initialDecentroTxnId string) DigilockerApiRevokeTokenRequest

RevokeToken Revoke Token

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param initialDecentroTxnId
@return DigilockerApiRevokeTokenRequest

func (*DigilockerApiService) RevokeTokenExecute

Execute executes the request

@return DigilockerRevokeTokenResponse

type DigilockerDownloadFile400Response added in v1.0.1

type DigilockerDownloadFile400Response struct {
	Data          *DigilockerDownloadFile400ResponseData `json:"data,omitempty"`
	DecentroTxnId *string                                `json:"decentroTxnId,omitempty"`
	Message       *string                                `json:"message,omitempty"`
	ResponseCode  *string                                `json:"responseCode,omitempty"`
	ResponseKey   *string                                `json:"responseKey,omitempty"`
	Status        *string                                `json:"status,omitempty"`
}

DigilockerDownloadFile400Response struct for DigilockerDownloadFile400Response

func NewDigilockerDownloadFile400Response added in v1.0.1

func NewDigilockerDownloadFile400Response() *DigilockerDownloadFile400Response

NewDigilockerDownloadFile400Response instantiates a new DigilockerDownloadFile400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerDownloadFile400ResponseWithDefaults added in v1.0.1

func NewDigilockerDownloadFile400ResponseWithDefaults() *DigilockerDownloadFile400Response

NewDigilockerDownloadFile400ResponseWithDefaults instantiates a new DigilockerDownloadFile400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerDownloadFile400Response) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*DigilockerDownloadFile400Response) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFile400Response) GetDecentroTxnId added in v1.0.1

func (o *DigilockerDownloadFile400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerDownloadFile400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerDownloadFile400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFile400Response) GetMessage added in v1.0.1

func (o *DigilockerDownloadFile400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerDownloadFile400Response) GetMessageOk added in v1.0.1

func (o *DigilockerDownloadFile400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFile400Response) GetResponseCode added in v1.0.1

func (o *DigilockerDownloadFile400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerDownloadFile400Response) GetResponseCodeOk added in v1.0.1

func (o *DigilockerDownloadFile400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFile400Response) GetResponseKey added in v1.0.1

func (o *DigilockerDownloadFile400Response) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerDownloadFile400Response) GetResponseKeyOk added in v1.0.1

func (o *DigilockerDownloadFile400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFile400Response) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerDownloadFile400Response) GetStatusOk added in v1.0.1

func (o *DigilockerDownloadFile400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFile400Response) HasData added in v1.0.1

HasData returns a boolean if a field has been set.

func (*DigilockerDownloadFile400Response) HasDecentroTxnId added in v1.0.1

func (o *DigilockerDownloadFile400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerDownloadFile400Response) HasMessage added in v1.0.1

func (o *DigilockerDownloadFile400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DigilockerDownloadFile400Response) HasResponseCode added in v1.0.1

func (o *DigilockerDownloadFile400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerDownloadFile400Response) HasResponseKey added in v1.0.1

func (o *DigilockerDownloadFile400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerDownloadFile400Response) HasStatus added in v1.0.1

func (o *DigilockerDownloadFile400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DigilockerDownloadFile400Response) MarshalJSON added in v1.0.1

func (o DigilockerDownloadFile400Response) MarshalJSON() ([]byte, error)

func (*DigilockerDownloadFile400Response) SetData added in v1.0.1

SetData gets a reference to the given DigilockerDownloadFile400ResponseData and assigns it to the Data field.

func (*DigilockerDownloadFile400Response) SetDecentroTxnId added in v1.0.1

func (o *DigilockerDownloadFile400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerDownloadFile400Response) SetMessage added in v1.0.1

func (o *DigilockerDownloadFile400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerDownloadFile400Response) SetResponseCode added in v1.0.1

func (o *DigilockerDownloadFile400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerDownloadFile400Response) SetResponseKey added in v1.0.1

func (o *DigilockerDownloadFile400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerDownloadFile400Response) SetStatus added in v1.0.1

func (o *DigilockerDownloadFile400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerDownloadFile400ResponseData added in v1.0.1

type DigilockerDownloadFile400ResponseData struct {
	File *string `json:"file,omitempty"`
}

DigilockerDownloadFile400ResponseData struct for DigilockerDownloadFile400ResponseData

func NewDigilockerDownloadFile400ResponseData added in v1.0.1

func NewDigilockerDownloadFile400ResponseData() *DigilockerDownloadFile400ResponseData

NewDigilockerDownloadFile400ResponseData instantiates a new DigilockerDownloadFile400ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerDownloadFile400ResponseDataWithDefaults added in v1.0.1

func NewDigilockerDownloadFile400ResponseDataWithDefaults() *DigilockerDownloadFile400ResponseData

NewDigilockerDownloadFile400ResponseDataWithDefaults instantiates a new DigilockerDownloadFile400ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerDownloadFile400ResponseData) GetFile added in v1.0.1

GetFile returns the File field value if set, zero value otherwise.

func (*DigilockerDownloadFile400ResponseData) GetFileOk added in v1.0.1

GetFileOk returns a tuple with the File field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFile400ResponseData) HasFile added in v1.0.1

HasFile returns a boolean if a field has been set.

func (DigilockerDownloadFile400ResponseData) MarshalJSON added in v1.0.1

func (o DigilockerDownloadFile400ResponseData) MarshalJSON() ([]byte, error)

func (*DigilockerDownloadFile400ResponseData) SetFile added in v1.0.1

SetFile gets a reference to the given string and assigns it to the File field.

type DigilockerDownloadFileRequest

type DigilockerDownloadFileRequest struct {
	FileUrn     *string `json:"file_urn,omitempty"`
	Consent     *bool   `json:"consent,omitempty"`
	Purpose     *string `json:"purpose,omitempty"`
	ReferenceId *string `json:"reference_id,omitempty"`
}

DigilockerDownloadFileRequest struct for DigilockerDownloadFileRequest

func NewDigilockerDownloadFileRequest

func NewDigilockerDownloadFileRequest() *DigilockerDownloadFileRequest

NewDigilockerDownloadFileRequest instantiates a new DigilockerDownloadFileRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerDownloadFileRequestWithDefaults

func NewDigilockerDownloadFileRequestWithDefaults() *DigilockerDownloadFileRequest

NewDigilockerDownloadFileRequestWithDefaults instantiates a new DigilockerDownloadFileRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerDownloadFileRequest) GetConsent

func (o *DigilockerDownloadFileRequest) GetConsent() bool

GetConsent returns the Consent field value if set, zero value otherwise.

func (*DigilockerDownloadFileRequest) GetConsentOk

func (o *DigilockerDownloadFileRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFileRequest) GetFileUrn

func (o *DigilockerDownloadFileRequest) GetFileUrn() string

GetFileUrn returns the FileUrn field value if set, zero value otherwise.

func (*DigilockerDownloadFileRequest) GetFileUrnOk

func (o *DigilockerDownloadFileRequest) GetFileUrnOk() (*string, bool)

GetFileUrnOk returns a tuple with the FileUrn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFileRequest) GetPurpose

func (o *DigilockerDownloadFileRequest) GetPurpose() string

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*DigilockerDownloadFileRequest) GetPurposeOk

func (o *DigilockerDownloadFileRequest) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFileRequest) GetReferenceId

func (o *DigilockerDownloadFileRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*DigilockerDownloadFileRequest) GetReferenceIdOk

func (o *DigilockerDownloadFileRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFileRequest) HasConsent

func (o *DigilockerDownloadFileRequest) HasConsent() bool

HasConsent returns a boolean if a field has been set.

func (*DigilockerDownloadFileRequest) HasFileUrn

func (o *DigilockerDownloadFileRequest) HasFileUrn() bool

HasFileUrn returns a boolean if a field has been set.

func (*DigilockerDownloadFileRequest) HasPurpose

func (o *DigilockerDownloadFileRequest) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (*DigilockerDownloadFileRequest) HasReferenceId

func (o *DigilockerDownloadFileRequest) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (DigilockerDownloadFileRequest) MarshalJSON

func (o DigilockerDownloadFileRequest) MarshalJSON() ([]byte, error)

func (*DigilockerDownloadFileRequest) SetConsent

func (o *DigilockerDownloadFileRequest) SetConsent(v bool)

SetConsent gets a reference to the given bool and assigns it to the Consent field.

func (*DigilockerDownloadFileRequest) SetFileUrn

func (o *DigilockerDownloadFileRequest) SetFileUrn(v string)

SetFileUrn gets a reference to the given string and assigns it to the FileUrn field.

func (*DigilockerDownloadFileRequest) SetPurpose

func (o *DigilockerDownloadFileRequest) SetPurpose(v string)

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*DigilockerDownloadFileRequest) SetReferenceId

func (o *DigilockerDownloadFileRequest) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

type DigilockerDownloadFileResponse added in v1.0.1

type DigilockerDownloadFileResponse struct {
	DecentroTxnId *string                             `json:"decentroTxnId,omitempty"`
	Status        *string                             `json:"status,omitempty"`
	ResponseCode  *string                             `json:"responseCode,omitempty"`
	Message       *string                             `json:"message,omitempty"`
	Data          *DigilockerDownloadFileResponseData `json:"data,omitempty"`
	ResponseKey   *string                             `json:"responseKey,omitempty"`
}

DigilockerDownloadFileResponse struct for DigilockerDownloadFileResponse

func NewDigilockerDownloadFileResponse added in v1.0.1

func NewDigilockerDownloadFileResponse() *DigilockerDownloadFileResponse

NewDigilockerDownloadFileResponse instantiates a new DigilockerDownloadFileResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerDownloadFileResponseWithDefaults added in v1.0.1

func NewDigilockerDownloadFileResponseWithDefaults() *DigilockerDownloadFileResponse

NewDigilockerDownloadFileResponseWithDefaults instantiates a new DigilockerDownloadFileResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerDownloadFileResponse) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*DigilockerDownloadFileResponse) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFileResponse) GetDecentroTxnId added in v1.0.1

func (o *DigilockerDownloadFileResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerDownloadFileResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerDownloadFileResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFileResponse) GetMessage added in v1.0.1

func (o *DigilockerDownloadFileResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerDownloadFileResponse) GetMessageOk added in v1.0.1

func (o *DigilockerDownloadFileResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFileResponse) GetResponseCode added in v1.0.1

func (o *DigilockerDownloadFileResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerDownloadFileResponse) GetResponseCodeOk added in v1.0.1

func (o *DigilockerDownloadFileResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFileResponse) GetResponseKey added in v1.0.1

func (o *DigilockerDownloadFileResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerDownloadFileResponse) GetResponseKeyOk added in v1.0.1

func (o *DigilockerDownloadFileResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFileResponse) GetStatus added in v1.0.1

func (o *DigilockerDownloadFileResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerDownloadFileResponse) GetStatusOk added in v1.0.1

func (o *DigilockerDownloadFileResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFileResponse) HasData added in v1.0.1

func (o *DigilockerDownloadFileResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*DigilockerDownloadFileResponse) HasDecentroTxnId added in v1.0.1

func (o *DigilockerDownloadFileResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerDownloadFileResponse) HasMessage added in v1.0.1

func (o *DigilockerDownloadFileResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DigilockerDownloadFileResponse) HasResponseCode added in v1.0.1

func (o *DigilockerDownloadFileResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerDownloadFileResponse) HasResponseKey added in v1.0.1

func (o *DigilockerDownloadFileResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerDownloadFileResponse) HasStatus added in v1.0.1

func (o *DigilockerDownloadFileResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DigilockerDownloadFileResponse) MarshalJSON added in v1.0.1

func (o DigilockerDownloadFileResponse) MarshalJSON() ([]byte, error)

func (*DigilockerDownloadFileResponse) SetData added in v1.0.1

SetData gets a reference to the given DigilockerDownloadFileResponseData and assigns it to the Data field.

func (*DigilockerDownloadFileResponse) SetDecentroTxnId added in v1.0.1

func (o *DigilockerDownloadFileResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerDownloadFileResponse) SetMessage added in v1.0.1

func (o *DigilockerDownloadFileResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerDownloadFileResponse) SetResponseCode added in v1.0.1

func (o *DigilockerDownloadFileResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerDownloadFileResponse) SetResponseKey added in v1.0.1

func (o *DigilockerDownloadFileResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerDownloadFileResponse) SetStatus added in v1.0.1

func (o *DigilockerDownloadFileResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerDownloadFileResponseData added in v1.0.1

type DigilockerDownloadFileResponseData struct {
	File *string `json:"file,omitempty"`
}

DigilockerDownloadFileResponseData struct for DigilockerDownloadFileResponseData

func NewDigilockerDownloadFileResponseData added in v1.0.1

func NewDigilockerDownloadFileResponseData() *DigilockerDownloadFileResponseData

NewDigilockerDownloadFileResponseData instantiates a new DigilockerDownloadFileResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerDownloadFileResponseDataWithDefaults added in v1.0.1

func NewDigilockerDownloadFileResponseDataWithDefaults() *DigilockerDownloadFileResponseData

NewDigilockerDownloadFileResponseDataWithDefaults instantiates a new DigilockerDownloadFileResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerDownloadFileResponseData) GetFile added in v1.0.1

GetFile returns the File field value if set, zero value otherwise.

func (*DigilockerDownloadFileResponseData) GetFileOk added in v1.0.1

func (o *DigilockerDownloadFileResponseData) GetFileOk() (*string, bool)

GetFileOk returns a tuple with the File field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerDownloadFileResponseData) HasFile added in v1.0.1

HasFile returns a boolean if a field has been set.

func (DigilockerDownloadFileResponseData) MarshalJSON added in v1.0.1

func (o DigilockerDownloadFileResponseData) MarshalJSON() ([]byte, error)

func (*DigilockerDownloadFileResponseData) SetFile added in v1.0.1

SetFile gets a reference to the given string and assigns it to the File field.

type DigilockerEAadhaar400Response added in v1.0.1

type DigilockerEAadhaar400Response struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Status        *string `json:"status,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	Message       *string `json:"message,omitempty"`
	ResponseKey   *string `json:"responseKey,omitempty"`
}

DigilockerEAadhaar400Response struct for DigilockerEAadhaar400Response

func NewDigilockerEAadhaar400Response added in v1.0.1

func NewDigilockerEAadhaar400Response() *DigilockerEAadhaar400Response

NewDigilockerEAadhaar400Response instantiates a new DigilockerEAadhaar400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerEAadhaar400ResponseWithDefaults added in v1.0.1

func NewDigilockerEAadhaar400ResponseWithDefaults() *DigilockerEAadhaar400Response

NewDigilockerEAadhaar400ResponseWithDefaults instantiates a new DigilockerEAadhaar400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerEAadhaar400Response) GetDecentroTxnId added in v1.0.1

func (o *DigilockerEAadhaar400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerEAadhaar400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerEAadhaar400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaar400Response) GetMessage added in v1.0.1

func (o *DigilockerEAadhaar400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerEAadhaar400Response) GetMessageOk added in v1.0.1

func (o *DigilockerEAadhaar400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaar400Response) GetResponseCode added in v1.0.1

func (o *DigilockerEAadhaar400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerEAadhaar400Response) GetResponseCodeOk added in v1.0.1

func (o *DigilockerEAadhaar400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaar400Response) GetResponseKey added in v1.0.1

func (o *DigilockerEAadhaar400Response) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerEAadhaar400Response) GetResponseKeyOk added in v1.0.1

func (o *DigilockerEAadhaar400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaar400Response) GetStatus added in v1.0.1

func (o *DigilockerEAadhaar400Response) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerEAadhaar400Response) GetStatusOk added in v1.0.1

func (o *DigilockerEAadhaar400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaar400Response) HasDecentroTxnId added in v1.0.1

func (o *DigilockerEAadhaar400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerEAadhaar400Response) HasMessage added in v1.0.1

func (o *DigilockerEAadhaar400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DigilockerEAadhaar400Response) HasResponseCode added in v1.0.1

func (o *DigilockerEAadhaar400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerEAadhaar400Response) HasResponseKey added in v1.0.1

func (o *DigilockerEAadhaar400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerEAadhaar400Response) HasStatus added in v1.0.1

func (o *DigilockerEAadhaar400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DigilockerEAadhaar400Response) MarshalJSON added in v1.0.1

func (o DigilockerEAadhaar400Response) MarshalJSON() ([]byte, error)

func (*DigilockerEAadhaar400Response) SetDecentroTxnId added in v1.0.1

func (o *DigilockerEAadhaar400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerEAadhaar400Response) SetMessage added in v1.0.1

func (o *DigilockerEAadhaar400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerEAadhaar400Response) SetResponseCode added in v1.0.1

func (o *DigilockerEAadhaar400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerEAadhaar400Response) SetResponseKey added in v1.0.1

func (o *DigilockerEAadhaar400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerEAadhaar400Response) SetStatus added in v1.0.1

func (o *DigilockerEAadhaar400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerEAadhaarRequest

type DigilockerEAadhaarRequest struct {
	Consent     *bool   `json:"consent,omitempty"`
	Purpose     *string `json:"purpose,omitempty"`
	ReferenceId *string `json:"reference_id,omitempty"`
	GenerateXml *bool   `json:"generate_xml,omitempty"`
	GeneratePdf *bool   `json:"generate_pdf,omitempty"`
}

DigilockerEAadhaarRequest struct for DigilockerEAadhaarRequest

func NewDigilockerEAadhaarRequest

func NewDigilockerEAadhaarRequest() *DigilockerEAadhaarRequest

NewDigilockerEAadhaarRequest instantiates a new DigilockerEAadhaarRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerEAadhaarRequestWithDefaults

func NewDigilockerEAadhaarRequestWithDefaults() *DigilockerEAadhaarRequest

NewDigilockerEAadhaarRequestWithDefaults instantiates a new DigilockerEAadhaarRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerEAadhaarRequest) GetConsent

func (o *DigilockerEAadhaarRequest) GetConsent() bool

GetConsent returns the Consent field value if set, zero value otherwise.

func (*DigilockerEAadhaarRequest) GetConsentOk

func (o *DigilockerEAadhaarRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarRequest) GetGeneratePdf

func (o *DigilockerEAadhaarRequest) GetGeneratePdf() bool

GetGeneratePdf returns the GeneratePdf field value if set, zero value otherwise.

func (*DigilockerEAadhaarRequest) GetGeneratePdfOk

func (o *DigilockerEAadhaarRequest) GetGeneratePdfOk() (*bool, bool)

GetGeneratePdfOk returns a tuple with the GeneratePdf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarRequest) GetGenerateXml

func (o *DigilockerEAadhaarRequest) GetGenerateXml() bool

GetGenerateXml returns the GenerateXml field value if set, zero value otherwise.

func (*DigilockerEAadhaarRequest) GetGenerateXmlOk

func (o *DigilockerEAadhaarRequest) GetGenerateXmlOk() (*bool, bool)

GetGenerateXmlOk returns a tuple with the GenerateXml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarRequest) GetPurpose

func (o *DigilockerEAadhaarRequest) GetPurpose() string

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*DigilockerEAadhaarRequest) GetPurposeOk

func (o *DigilockerEAadhaarRequest) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarRequest) GetReferenceId

func (o *DigilockerEAadhaarRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*DigilockerEAadhaarRequest) GetReferenceIdOk

func (o *DigilockerEAadhaarRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarRequest) HasConsent

func (o *DigilockerEAadhaarRequest) HasConsent() bool

HasConsent returns a boolean if a field has been set.

func (*DigilockerEAadhaarRequest) HasGeneratePdf

func (o *DigilockerEAadhaarRequest) HasGeneratePdf() bool

HasGeneratePdf returns a boolean if a field has been set.

func (*DigilockerEAadhaarRequest) HasGenerateXml

func (o *DigilockerEAadhaarRequest) HasGenerateXml() bool

HasGenerateXml returns a boolean if a field has been set.

func (*DigilockerEAadhaarRequest) HasPurpose

func (o *DigilockerEAadhaarRequest) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (*DigilockerEAadhaarRequest) HasReferenceId

func (o *DigilockerEAadhaarRequest) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (DigilockerEAadhaarRequest) MarshalJSON

func (o DigilockerEAadhaarRequest) MarshalJSON() ([]byte, error)

func (*DigilockerEAadhaarRequest) SetConsent

func (o *DigilockerEAadhaarRequest) SetConsent(v bool)

SetConsent gets a reference to the given bool and assigns it to the Consent field.

func (*DigilockerEAadhaarRequest) SetGeneratePdf

func (o *DigilockerEAadhaarRequest) SetGeneratePdf(v bool)

SetGeneratePdf gets a reference to the given bool and assigns it to the GeneratePdf field.

func (*DigilockerEAadhaarRequest) SetGenerateXml

func (o *DigilockerEAadhaarRequest) SetGenerateXml(v bool)

SetGenerateXml gets a reference to the given bool and assigns it to the GenerateXml field.

func (*DigilockerEAadhaarRequest) SetPurpose

func (o *DigilockerEAadhaarRequest) SetPurpose(v string)

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*DigilockerEAadhaarRequest) SetReferenceId

func (o *DigilockerEAadhaarRequest) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

type DigilockerEAadhaarResponse added in v1.0.1

type DigilockerEAadhaarResponse struct {
	DecentroTxnId *string                         `json:"decentroTxnId,omitempty"`
	Status        *string                         `json:"status,omitempty"`
	ResponseCode  *string                         `json:"responseCode,omitempty"`
	Message       *string                         `json:"message,omitempty"`
	Data          *DigilockerEAadhaarResponseData `json:"data,omitempty"`
	ResponseKey   *string                         `json:"responseKey,omitempty"`
}

DigilockerEAadhaarResponse struct for DigilockerEAadhaarResponse

func NewDigilockerEAadhaarResponse added in v1.0.1

func NewDigilockerEAadhaarResponse() *DigilockerEAadhaarResponse

NewDigilockerEAadhaarResponse instantiates a new DigilockerEAadhaarResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerEAadhaarResponseWithDefaults added in v1.0.1

func NewDigilockerEAadhaarResponseWithDefaults() *DigilockerEAadhaarResponse

NewDigilockerEAadhaarResponseWithDefaults instantiates a new DigilockerEAadhaarResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerEAadhaarResponse) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponse) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponse) GetDecentroTxnId added in v1.0.1

func (o *DigilockerEAadhaarResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerEAadhaarResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponse) GetMessage added in v1.0.1

func (o *DigilockerEAadhaarResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponse) GetMessageOk added in v1.0.1

func (o *DigilockerEAadhaarResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponse) GetResponseCode added in v1.0.1

func (o *DigilockerEAadhaarResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponse) GetResponseCodeOk added in v1.0.1

func (o *DigilockerEAadhaarResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponse) GetResponseKey added in v1.0.1

func (o *DigilockerEAadhaarResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponse) GetResponseKeyOk added in v1.0.1

func (o *DigilockerEAadhaarResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponse) GetStatus added in v1.0.1

func (o *DigilockerEAadhaarResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponse) GetStatusOk added in v1.0.1

func (o *DigilockerEAadhaarResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponse) HasData added in v1.0.1

func (o *DigilockerEAadhaarResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponse) HasDecentroTxnId added in v1.0.1

func (o *DigilockerEAadhaarResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponse) HasMessage added in v1.0.1

func (o *DigilockerEAadhaarResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponse) HasResponseCode added in v1.0.1

func (o *DigilockerEAadhaarResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponse) HasResponseKey added in v1.0.1

func (o *DigilockerEAadhaarResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponse) HasStatus added in v1.0.1

func (o *DigilockerEAadhaarResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DigilockerEAadhaarResponse) MarshalJSON added in v1.0.1

func (o DigilockerEAadhaarResponse) MarshalJSON() ([]byte, error)

func (*DigilockerEAadhaarResponse) SetData added in v1.0.1

SetData gets a reference to the given DigilockerEAadhaarResponseData and assigns it to the Data field.

func (*DigilockerEAadhaarResponse) SetDecentroTxnId added in v1.0.1

func (o *DigilockerEAadhaarResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerEAadhaarResponse) SetMessage added in v1.0.1

func (o *DigilockerEAadhaarResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerEAadhaarResponse) SetResponseCode added in v1.0.1

func (o *DigilockerEAadhaarResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerEAadhaarResponse) SetResponseKey added in v1.0.1

func (o *DigilockerEAadhaarResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerEAadhaarResponse) SetStatus added in v1.0.1

func (o *DigilockerEAadhaarResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerEAadhaarResponseData added in v1.0.1

type DigilockerEAadhaarResponseData struct {
	AadhaarReferenceNumber *string                                        `json:"aadhaarReferenceNumber,omitempty"`
	AadhaarUid             *string                                        `json:"aadhaarUid,omitempty"`
	ProofOfIdentity        *DigilockerEAadhaarResponseDataProofOfIdentity `json:"proofOfIdentity,omitempty"`
	ProofOfAddress         *DigilockerEAadhaarResponseDataProofOfAddress  `json:"proofOfAddress,omitempty"`
	Image                  *string                                        `json:"image,omitempty"`
	Pdf                    *string                                        `json:"pdf,omitempty"`
	Xml                    *string                                        `json:"xml,omitempty"`
}

DigilockerEAadhaarResponseData struct for DigilockerEAadhaarResponseData

func NewDigilockerEAadhaarResponseData added in v1.0.1

func NewDigilockerEAadhaarResponseData() *DigilockerEAadhaarResponseData

NewDigilockerEAadhaarResponseData instantiates a new DigilockerEAadhaarResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerEAadhaarResponseDataWithDefaults added in v1.0.1

func NewDigilockerEAadhaarResponseDataWithDefaults() *DigilockerEAadhaarResponseData

NewDigilockerEAadhaarResponseDataWithDefaults instantiates a new DigilockerEAadhaarResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerEAadhaarResponseData) GetAadhaarReferenceNumber added in v1.0.1

func (o *DigilockerEAadhaarResponseData) GetAadhaarReferenceNumber() string

GetAadhaarReferenceNumber returns the AadhaarReferenceNumber field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseData) GetAadhaarReferenceNumberOk added in v1.0.1

func (o *DigilockerEAadhaarResponseData) GetAadhaarReferenceNumberOk() (*string, bool)

GetAadhaarReferenceNumberOk returns a tuple with the AadhaarReferenceNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseData) GetAadhaarUid added in v1.0.1

func (o *DigilockerEAadhaarResponseData) GetAadhaarUid() string

GetAadhaarUid returns the AadhaarUid field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseData) GetAadhaarUidOk added in v1.0.1

func (o *DigilockerEAadhaarResponseData) GetAadhaarUidOk() (*string, bool)

GetAadhaarUidOk returns a tuple with the AadhaarUid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseData) GetImage added in v1.0.1

func (o *DigilockerEAadhaarResponseData) GetImage() string

GetImage returns the Image field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseData) GetImageOk added in v1.0.1

func (o *DigilockerEAadhaarResponseData) GetImageOk() (*string, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseData) GetPdf added in v1.0.1

GetPdf returns the Pdf field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseData) GetPdfOk added in v1.0.1

func (o *DigilockerEAadhaarResponseData) GetPdfOk() (*string, bool)

GetPdfOk returns a tuple with the Pdf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseData) GetProofOfAddress added in v1.0.1

GetProofOfAddress returns the ProofOfAddress field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseData) GetProofOfAddressOk added in v1.0.1

GetProofOfAddressOk returns a tuple with the ProofOfAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseData) GetProofOfIdentity added in v1.0.1

GetProofOfIdentity returns the ProofOfIdentity field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseData) GetProofOfIdentityOk added in v1.0.1

GetProofOfIdentityOk returns a tuple with the ProofOfIdentity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseData) GetXml added in v1.0.1

GetXml returns the Xml field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseData) GetXmlOk added in v1.0.1

func (o *DigilockerEAadhaarResponseData) GetXmlOk() (*string, bool)

GetXmlOk returns a tuple with the Xml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseData) HasAadhaarReferenceNumber added in v1.0.1

func (o *DigilockerEAadhaarResponseData) HasAadhaarReferenceNumber() bool

HasAadhaarReferenceNumber returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseData) HasAadhaarUid added in v1.0.1

func (o *DigilockerEAadhaarResponseData) HasAadhaarUid() bool

HasAadhaarUid returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseData) HasImage added in v1.0.1

func (o *DigilockerEAadhaarResponseData) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseData) HasPdf added in v1.0.1

HasPdf returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseData) HasProofOfAddress added in v1.0.1

func (o *DigilockerEAadhaarResponseData) HasProofOfAddress() bool

HasProofOfAddress returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseData) HasProofOfIdentity added in v1.0.1

func (o *DigilockerEAadhaarResponseData) HasProofOfIdentity() bool

HasProofOfIdentity returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseData) HasXml added in v1.0.1

HasXml returns a boolean if a field has been set.

func (DigilockerEAadhaarResponseData) MarshalJSON added in v1.0.1

func (o DigilockerEAadhaarResponseData) MarshalJSON() ([]byte, error)

func (*DigilockerEAadhaarResponseData) SetAadhaarReferenceNumber added in v1.0.1

func (o *DigilockerEAadhaarResponseData) SetAadhaarReferenceNumber(v string)

SetAadhaarReferenceNumber gets a reference to the given string and assigns it to the AadhaarReferenceNumber field.

func (*DigilockerEAadhaarResponseData) SetAadhaarUid added in v1.0.1

func (o *DigilockerEAadhaarResponseData) SetAadhaarUid(v string)

SetAadhaarUid gets a reference to the given string and assigns it to the AadhaarUid field.

func (*DigilockerEAadhaarResponseData) SetImage added in v1.0.1

func (o *DigilockerEAadhaarResponseData) SetImage(v string)

SetImage gets a reference to the given string and assigns it to the Image field.

func (*DigilockerEAadhaarResponseData) SetPdf added in v1.0.1

SetPdf gets a reference to the given string and assigns it to the Pdf field.

func (*DigilockerEAadhaarResponseData) SetProofOfAddress added in v1.0.1

SetProofOfAddress gets a reference to the given DigilockerEAadhaarResponseDataProofOfAddress and assigns it to the ProofOfAddress field.

func (*DigilockerEAadhaarResponseData) SetProofOfIdentity added in v1.0.1

SetProofOfIdentity gets a reference to the given DigilockerEAadhaarResponseDataProofOfIdentity and assigns it to the ProofOfIdentity field.

func (*DigilockerEAadhaarResponseData) SetXml added in v1.0.1

SetXml gets a reference to the given string and assigns it to the Xml field.

type DigilockerEAadhaarResponseDataProofOfAddress added in v1.0.1

type DigilockerEAadhaarResponseDataProofOfAddress struct {
	CareOf      *string `json:"careOf,omitempty"`
	Country     *string `json:"country,omitempty"`
	District    *string `json:"district,omitempty"`
	House       *string `json:"house,omitempty"`
	Landmark    *string `json:"landmark,omitempty"`
	Locality    *string `json:"locality,omitempty"`
	Pincode     *string `json:"pincode,omitempty"`
	PostOffice  *string `json:"postOffice,omitempty"`
	State       *string `json:"state,omitempty"`
	Street      *string `json:"street,omitempty"`
	SubDistrict *string `json:"subDistrict,omitempty"`
	Vtc         *string `json:"vtc,omitempty"`
}

DigilockerEAadhaarResponseDataProofOfAddress struct for DigilockerEAadhaarResponseDataProofOfAddress

func NewDigilockerEAadhaarResponseDataProofOfAddress added in v1.0.1

func NewDigilockerEAadhaarResponseDataProofOfAddress() *DigilockerEAadhaarResponseDataProofOfAddress

NewDigilockerEAadhaarResponseDataProofOfAddress instantiates a new DigilockerEAadhaarResponseDataProofOfAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerEAadhaarResponseDataProofOfAddressWithDefaults added in v1.0.1

func NewDigilockerEAadhaarResponseDataProofOfAddressWithDefaults() *DigilockerEAadhaarResponseDataProofOfAddress

NewDigilockerEAadhaarResponseDataProofOfAddressWithDefaults instantiates a new DigilockerEAadhaarResponseDataProofOfAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetCareOf added in v1.0.1

GetCareOf returns the CareOf field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetCareOfOk added in v1.0.1

GetCareOfOk returns a tuple with the CareOf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetCountry added in v1.0.1

GetCountry returns the Country field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetCountryOk added in v1.0.1

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetDistrict added in v1.0.1

GetDistrict returns the District field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetDistrictOk added in v1.0.1

GetDistrictOk returns a tuple with the District field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetHouse added in v1.0.1

GetHouse returns the House field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetHouseOk added in v1.0.1

GetHouseOk returns a tuple with the House field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetLandmark added in v1.0.1

GetLandmark returns the Landmark field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetLandmarkOk added in v1.0.1

GetLandmarkOk returns a tuple with the Landmark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetLocality added in v1.0.1

GetLocality returns the Locality field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetLocalityOk added in v1.0.1

GetLocalityOk returns a tuple with the Locality field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetPincode added in v1.0.1

GetPincode returns the Pincode field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetPincodeOk added in v1.0.1

GetPincodeOk returns a tuple with the Pincode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetPostOffice added in v1.0.1

GetPostOffice returns the PostOffice field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetPostOfficeOk added in v1.0.1

func (o *DigilockerEAadhaarResponseDataProofOfAddress) GetPostOfficeOk() (*string, bool)

GetPostOfficeOk returns a tuple with the PostOffice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetState added in v1.0.1

GetState returns the State field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetStateOk added in v1.0.1

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetStreet added in v1.0.1

GetStreet returns the Street field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetStreetOk added in v1.0.1

GetStreetOk returns a tuple with the Street field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetSubDistrict added in v1.0.1

GetSubDistrict returns the SubDistrict field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetSubDistrictOk added in v1.0.1

func (o *DigilockerEAadhaarResponseDataProofOfAddress) GetSubDistrictOk() (*string, bool)

GetSubDistrictOk returns a tuple with the SubDistrict field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetVtc added in v1.0.1

GetVtc returns the Vtc field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfAddress) GetVtcOk added in v1.0.1

GetVtcOk returns a tuple with the Vtc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) HasCareOf added in v1.0.1

HasCareOf returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) HasCountry added in v1.0.1

HasCountry returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) HasDistrict added in v1.0.1

HasDistrict returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) HasHouse added in v1.0.1

HasHouse returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) HasLandmark added in v1.0.1

HasLandmark returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) HasLocality added in v1.0.1

HasLocality returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) HasPincode added in v1.0.1

HasPincode returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) HasPostOffice added in v1.0.1

HasPostOffice returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) HasState added in v1.0.1

HasState returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) HasStreet added in v1.0.1

HasStreet returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) HasSubDistrict added in v1.0.1

HasSubDistrict returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfAddress) HasVtc added in v1.0.1

HasVtc returns a boolean if a field has been set.

func (DigilockerEAadhaarResponseDataProofOfAddress) MarshalJSON added in v1.0.1

func (*DigilockerEAadhaarResponseDataProofOfAddress) SetCareOf added in v1.0.1

SetCareOf gets a reference to the given string and assigns it to the CareOf field.

func (*DigilockerEAadhaarResponseDataProofOfAddress) SetCountry added in v1.0.1

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*DigilockerEAadhaarResponseDataProofOfAddress) SetDistrict added in v1.0.1

SetDistrict gets a reference to the given string and assigns it to the District field.

func (*DigilockerEAadhaarResponseDataProofOfAddress) SetHouse added in v1.0.1

SetHouse gets a reference to the given string and assigns it to the House field.

func (*DigilockerEAadhaarResponseDataProofOfAddress) SetLandmark added in v1.0.1

SetLandmark gets a reference to the given string and assigns it to the Landmark field.

func (*DigilockerEAadhaarResponseDataProofOfAddress) SetLocality added in v1.0.1

SetLocality gets a reference to the given string and assigns it to the Locality field.

func (*DigilockerEAadhaarResponseDataProofOfAddress) SetPincode added in v1.0.1

SetPincode gets a reference to the given string and assigns it to the Pincode field.

func (*DigilockerEAadhaarResponseDataProofOfAddress) SetPostOffice added in v1.0.1

SetPostOffice gets a reference to the given string and assigns it to the PostOffice field.

func (*DigilockerEAadhaarResponseDataProofOfAddress) SetState added in v1.0.1

SetState gets a reference to the given string and assigns it to the State field.

func (*DigilockerEAadhaarResponseDataProofOfAddress) SetStreet added in v1.0.1

SetStreet gets a reference to the given string and assigns it to the Street field.

func (*DigilockerEAadhaarResponseDataProofOfAddress) SetSubDistrict added in v1.0.1

SetSubDistrict gets a reference to the given string and assigns it to the SubDistrict field.

func (*DigilockerEAadhaarResponseDataProofOfAddress) SetVtc added in v1.0.1

SetVtc gets a reference to the given string and assigns it to the Vtc field.

type DigilockerEAadhaarResponseDataProofOfIdentity added in v1.0.1

type DigilockerEAadhaarResponseDataProofOfIdentity struct {
	Dob                *string `json:"dob,omitempty"`
	HashedEmail        *string `json:"hashedEmail,omitempty"`
	Gender             *string `json:"gender,omitempty"`
	HashedMobileNumber *string `json:"hashedMobileNumber,omitempty"`
	Name               *string `json:"name,omitempty"`
}

DigilockerEAadhaarResponseDataProofOfIdentity struct for DigilockerEAadhaarResponseDataProofOfIdentity

func NewDigilockerEAadhaarResponseDataProofOfIdentity added in v1.0.1

func NewDigilockerEAadhaarResponseDataProofOfIdentity() *DigilockerEAadhaarResponseDataProofOfIdentity

NewDigilockerEAadhaarResponseDataProofOfIdentity instantiates a new DigilockerEAadhaarResponseDataProofOfIdentity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerEAadhaarResponseDataProofOfIdentityWithDefaults added in v1.0.1

func NewDigilockerEAadhaarResponseDataProofOfIdentityWithDefaults() *DigilockerEAadhaarResponseDataProofOfIdentity

NewDigilockerEAadhaarResponseDataProofOfIdentityWithDefaults instantiates a new DigilockerEAadhaarResponseDataProofOfIdentity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerEAadhaarResponseDataProofOfIdentity) GetDob added in v1.0.1

GetDob returns the Dob field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) GetDobOk added in v1.0.1

GetDobOk returns a tuple with the Dob field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) GetGender added in v1.0.1

GetGender returns the Gender field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) GetGenderOk added in v1.0.1

GetGenderOk returns a tuple with the Gender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) GetHashedEmail added in v1.0.1

GetHashedEmail returns the HashedEmail field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) GetHashedEmailOk added in v1.0.1

func (o *DigilockerEAadhaarResponseDataProofOfIdentity) GetHashedEmailOk() (*string, bool)

GetHashedEmailOk returns a tuple with the HashedEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) GetHashedMobileNumber added in v1.0.1

func (o *DigilockerEAadhaarResponseDataProofOfIdentity) GetHashedMobileNumber() string

GetHashedMobileNumber returns the HashedMobileNumber field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) GetHashedMobileNumberOk added in v1.0.1

func (o *DigilockerEAadhaarResponseDataProofOfIdentity) GetHashedMobileNumberOk() (*string, bool)

GetHashedMobileNumberOk returns a tuple with the HashedMobileNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) GetName added in v1.0.1

GetName returns the Name field value if set, zero value otherwise.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) GetNameOk added in v1.0.1

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) HasDob added in v1.0.1

HasDob returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) HasGender added in v1.0.1

HasGender returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) HasHashedEmail added in v1.0.1

HasHashedEmail returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) HasHashedMobileNumber added in v1.0.1

func (o *DigilockerEAadhaarResponseDataProofOfIdentity) HasHashedMobileNumber() bool

HasHashedMobileNumber returns a boolean if a field has been set.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) HasName added in v1.0.1

HasName returns a boolean if a field has been set.

func (DigilockerEAadhaarResponseDataProofOfIdentity) MarshalJSON added in v1.0.1

func (*DigilockerEAadhaarResponseDataProofOfIdentity) SetDob added in v1.0.1

SetDob gets a reference to the given string and assigns it to the Dob field.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) SetGender added in v1.0.1

SetGender gets a reference to the given string and assigns it to the Gender field.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) SetHashedEmail added in v1.0.1

SetHashedEmail gets a reference to the given string and assigns it to the HashedEmail field.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) SetHashedMobileNumber added in v1.0.1

func (o *DigilockerEAadhaarResponseDataProofOfIdentity) SetHashedMobileNumber(v string)

SetHashedMobileNumber gets a reference to the given string and assigns it to the HashedMobileNumber field.

func (*DigilockerEAadhaarResponseDataProofOfIdentity) SetName added in v1.0.1

SetName gets a reference to the given string and assigns it to the Name field.

type DigilockerFileData400Response added in v1.0.1

type DigilockerFileData400Response struct {
	Data          *DigilockerFileData400ResponseData `json:"data,omitempty"`
	DecentroTxnId *string                            `json:"decentroTxnId,omitempty"`
	Message       *string                            `json:"message,omitempty"`
	ResponseCode  *string                            `json:"responseCode,omitempty"`
	ResponseKey   *string                            `json:"responseKey,omitempty"`
	Status        *string                            `json:"status,omitempty"`
}

DigilockerFileData400Response struct for DigilockerFileData400Response

func NewDigilockerFileData400Response added in v1.0.1

func NewDigilockerFileData400Response() *DigilockerFileData400Response

NewDigilockerFileData400Response instantiates a new DigilockerFileData400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerFileData400ResponseWithDefaults added in v1.0.1

func NewDigilockerFileData400ResponseWithDefaults() *DigilockerFileData400Response

NewDigilockerFileData400ResponseWithDefaults instantiates a new DigilockerFileData400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerFileData400Response) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*DigilockerFileData400Response) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400Response) GetDecentroTxnId added in v1.0.1

func (o *DigilockerFileData400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerFileData400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerFileData400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400Response) GetMessage added in v1.0.1

func (o *DigilockerFileData400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerFileData400Response) GetMessageOk added in v1.0.1

func (o *DigilockerFileData400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400Response) GetResponseCode added in v1.0.1

func (o *DigilockerFileData400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerFileData400Response) GetResponseCodeOk added in v1.0.1

func (o *DigilockerFileData400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400Response) GetResponseKey added in v1.0.1

func (o *DigilockerFileData400Response) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerFileData400Response) GetResponseKeyOk added in v1.0.1

func (o *DigilockerFileData400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400Response) GetStatus added in v1.0.1

func (o *DigilockerFileData400Response) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerFileData400Response) GetStatusOk added in v1.0.1

func (o *DigilockerFileData400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400Response) HasData added in v1.0.1

func (o *DigilockerFileData400Response) HasData() bool

HasData returns a boolean if a field has been set.

func (*DigilockerFileData400Response) HasDecentroTxnId added in v1.0.1

func (o *DigilockerFileData400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerFileData400Response) HasMessage added in v1.0.1

func (o *DigilockerFileData400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DigilockerFileData400Response) HasResponseCode added in v1.0.1

func (o *DigilockerFileData400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerFileData400Response) HasResponseKey added in v1.0.1

func (o *DigilockerFileData400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerFileData400Response) HasStatus added in v1.0.1

func (o *DigilockerFileData400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DigilockerFileData400Response) MarshalJSON added in v1.0.1

func (o DigilockerFileData400Response) MarshalJSON() ([]byte, error)

func (*DigilockerFileData400Response) SetData added in v1.0.1

SetData gets a reference to the given DigilockerFileData400ResponseData and assigns it to the Data field.

func (*DigilockerFileData400Response) SetDecentroTxnId added in v1.0.1

func (o *DigilockerFileData400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerFileData400Response) SetMessage added in v1.0.1

func (o *DigilockerFileData400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerFileData400Response) SetResponseCode added in v1.0.1

func (o *DigilockerFileData400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerFileData400Response) SetResponseKey added in v1.0.1

func (o *DigilockerFileData400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerFileData400Response) SetStatus added in v1.0.1

func (o *DigilockerFileData400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerFileData400ResponseData added in v1.0.1

type DigilockerFileData400ResponseData struct {
	DocumentIssuer     *string `json:"documentIssuer,omitempty"`
	DocumentName       *string `json:"documentName,omitempty"`
	DocumentStatus     *string `json:"documentStatus,omitempty"`
	DocumentType       *string `json:"documentType,omitempty"`
	DocumentVerifiedOn *string `json:"documentVerifiedOn,omitempty"`
	IdNumber           *string `json:"idNumber,omitempty"`
	UserDateOfBirth    *string `json:"userDateOfBirth,omitempty"`
	UserGender         *string `json:"userGender,omitempty"`
	UserName           *string `json:"userName,omitempty"`
}

DigilockerFileData400ResponseData struct for DigilockerFileData400ResponseData

func NewDigilockerFileData400ResponseData added in v1.0.1

func NewDigilockerFileData400ResponseData() *DigilockerFileData400ResponseData

NewDigilockerFileData400ResponseData instantiates a new DigilockerFileData400ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerFileData400ResponseDataWithDefaults added in v1.0.1

func NewDigilockerFileData400ResponseDataWithDefaults() *DigilockerFileData400ResponseData

NewDigilockerFileData400ResponseDataWithDefaults instantiates a new DigilockerFileData400ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerFileData400ResponseData) GetDocumentIssuer added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetDocumentIssuer() string

GetDocumentIssuer returns the DocumentIssuer field value if set, zero value otherwise.

func (*DigilockerFileData400ResponseData) GetDocumentIssuerOk added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetDocumentIssuerOk() (*string, bool)

GetDocumentIssuerOk returns a tuple with the DocumentIssuer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400ResponseData) GetDocumentName added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetDocumentName() string

GetDocumentName returns the DocumentName field value if set, zero value otherwise.

func (*DigilockerFileData400ResponseData) GetDocumentNameOk added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetDocumentNameOk() (*string, bool)

GetDocumentNameOk returns a tuple with the DocumentName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400ResponseData) GetDocumentStatus added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetDocumentStatus() string

GetDocumentStatus returns the DocumentStatus field value if set, zero value otherwise.

func (*DigilockerFileData400ResponseData) GetDocumentStatusOk added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetDocumentStatusOk() (*string, bool)

GetDocumentStatusOk returns a tuple with the DocumentStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400ResponseData) GetDocumentType added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetDocumentType() string

GetDocumentType returns the DocumentType field value if set, zero value otherwise.

func (*DigilockerFileData400ResponseData) GetDocumentTypeOk added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetDocumentTypeOk() (*string, bool)

GetDocumentTypeOk returns a tuple with the DocumentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400ResponseData) GetDocumentVerifiedOn added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetDocumentVerifiedOn() string

GetDocumentVerifiedOn returns the DocumentVerifiedOn field value if set, zero value otherwise.

func (*DigilockerFileData400ResponseData) GetDocumentVerifiedOnOk added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetDocumentVerifiedOnOk() (*string, bool)

GetDocumentVerifiedOnOk returns a tuple with the DocumentVerifiedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400ResponseData) GetIdNumber added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetIdNumber() string

GetIdNumber returns the IdNumber field value if set, zero value otherwise.

func (*DigilockerFileData400ResponseData) GetIdNumberOk added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetIdNumberOk() (*string, bool)

GetIdNumberOk returns a tuple with the IdNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400ResponseData) GetUserDateOfBirth added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetUserDateOfBirth() string

GetUserDateOfBirth returns the UserDateOfBirth field value if set, zero value otherwise.

func (*DigilockerFileData400ResponseData) GetUserDateOfBirthOk added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetUserDateOfBirthOk() (*string, bool)

GetUserDateOfBirthOk returns a tuple with the UserDateOfBirth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400ResponseData) GetUserGender added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetUserGender() string

GetUserGender returns the UserGender field value if set, zero value otherwise.

func (*DigilockerFileData400ResponseData) GetUserGenderOk added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetUserGenderOk() (*string, bool)

GetUserGenderOk returns a tuple with the UserGender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400ResponseData) GetUserName added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*DigilockerFileData400ResponseData) GetUserNameOk added in v1.0.1

func (o *DigilockerFileData400ResponseData) GetUserNameOk() (*string, bool)

GetUserNameOk returns a tuple with the UserName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileData400ResponseData) HasDocumentIssuer added in v1.0.1

func (o *DigilockerFileData400ResponseData) HasDocumentIssuer() bool

HasDocumentIssuer returns a boolean if a field has been set.

func (*DigilockerFileData400ResponseData) HasDocumentName added in v1.0.1

func (o *DigilockerFileData400ResponseData) HasDocumentName() bool

HasDocumentName returns a boolean if a field has been set.

func (*DigilockerFileData400ResponseData) HasDocumentStatus added in v1.0.1

func (o *DigilockerFileData400ResponseData) HasDocumentStatus() bool

HasDocumentStatus returns a boolean if a field has been set.

func (*DigilockerFileData400ResponseData) HasDocumentType added in v1.0.1

func (o *DigilockerFileData400ResponseData) HasDocumentType() bool

HasDocumentType returns a boolean if a field has been set.

func (*DigilockerFileData400ResponseData) HasDocumentVerifiedOn added in v1.0.1

func (o *DigilockerFileData400ResponseData) HasDocumentVerifiedOn() bool

HasDocumentVerifiedOn returns a boolean if a field has been set.

func (*DigilockerFileData400ResponseData) HasIdNumber added in v1.0.1

func (o *DigilockerFileData400ResponseData) HasIdNumber() bool

HasIdNumber returns a boolean if a field has been set.

func (*DigilockerFileData400ResponseData) HasUserDateOfBirth added in v1.0.1

func (o *DigilockerFileData400ResponseData) HasUserDateOfBirth() bool

HasUserDateOfBirth returns a boolean if a field has been set.

func (*DigilockerFileData400ResponseData) HasUserGender added in v1.0.1

func (o *DigilockerFileData400ResponseData) HasUserGender() bool

HasUserGender returns a boolean if a field has been set.

func (*DigilockerFileData400ResponseData) HasUserName added in v1.0.1

func (o *DigilockerFileData400ResponseData) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (DigilockerFileData400ResponseData) MarshalJSON added in v1.0.1

func (o DigilockerFileData400ResponseData) MarshalJSON() ([]byte, error)

func (*DigilockerFileData400ResponseData) SetDocumentIssuer added in v1.0.1

func (o *DigilockerFileData400ResponseData) SetDocumentIssuer(v string)

SetDocumentIssuer gets a reference to the given string and assigns it to the DocumentIssuer field.

func (*DigilockerFileData400ResponseData) SetDocumentName added in v1.0.1

func (o *DigilockerFileData400ResponseData) SetDocumentName(v string)

SetDocumentName gets a reference to the given string and assigns it to the DocumentName field.

func (*DigilockerFileData400ResponseData) SetDocumentStatus added in v1.0.1

func (o *DigilockerFileData400ResponseData) SetDocumentStatus(v string)

SetDocumentStatus gets a reference to the given string and assigns it to the DocumentStatus field.

func (*DigilockerFileData400ResponseData) SetDocumentType added in v1.0.1

func (o *DigilockerFileData400ResponseData) SetDocumentType(v string)

SetDocumentType gets a reference to the given string and assigns it to the DocumentType field.

func (*DigilockerFileData400ResponseData) SetDocumentVerifiedOn added in v1.0.1

func (o *DigilockerFileData400ResponseData) SetDocumentVerifiedOn(v string)

SetDocumentVerifiedOn gets a reference to the given string and assigns it to the DocumentVerifiedOn field.

func (*DigilockerFileData400ResponseData) SetIdNumber added in v1.0.1

func (o *DigilockerFileData400ResponseData) SetIdNumber(v string)

SetIdNumber gets a reference to the given string and assigns it to the IdNumber field.

func (*DigilockerFileData400ResponseData) SetUserDateOfBirth added in v1.0.1

func (o *DigilockerFileData400ResponseData) SetUserDateOfBirth(v string)

SetUserDateOfBirth gets a reference to the given string and assigns it to the UserDateOfBirth field.

func (*DigilockerFileData400ResponseData) SetUserGender added in v1.0.1

func (o *DigilockerFileData400ResponseData) SetUserGender(v string)

SetUserGender gets a reference to the given string and assigns it to the UserGender field.

func (*DigilockerFileData400ResponseData) SetUserName added in v1.0.1

func (o *DigilockerFileData400ResponseData) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

type DigilockerFileDataRequest

type DigilockerFileDataRequest struct {
	FileUrn     *string `json:"file_urn,omitempty"`
	Consent     *bool   `json:"consent,omitempty"`
	Purpose     *string `json:"purpose,omitempty"`
	ReferenceId *string `json:"reference_id,omitempty"`
}

DigilockerFileDataRequest struct for DigilockerFileDataRequest

func NewDigilockerFileDataRequest

func NewDigilockerFileDataRequest() *DigilockerFileDataRequest

NewDigilockerFileDataRequest instantiates a new DigilockerFileDataRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerFileDataRequestWithDefaults

func NewDigilockerFileDataRequestWithDefaults() *DigilockerFileDataRequest

NewDigilockerFileDataRequestWithDefaults instantiates a new DigilockerFileDataRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerFileDataRequest) GetConsent

func (o *DigilockerFileDataRequest) GetConsent() bool

GetConsent returns the Consent field value if set, zero value otherwise.

func (*DigilockerFileDataRequest) GetConsentOk

func (o *DigilockerFileDataRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataRequest) GetFileUrn

func (o *DigilockerFileDataRequest) GetFileUrn() string

GetFileUrn returns the FileUrn field value if set, zero value otherwise.

func (*DigilockerFileDataRequest) GetFileUrnOk

func (o *DigilockerFileDataRequest) GetFileUrnOk() (*string, bool)

GetFileUrnOk returns a tuple with the FileUrn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataRequest) GetPurpose

func (o *DigilockerFileDataRequest) GetPurpose() string

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*DigilockerFileDataRequest) GetPurposeOk

func (o *DigilockerFileDataRequest) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataRequest) GetReferenceId

func (o *DigilockerFileDataRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*DigilockerFileDataRequest) GetReferenceIdOk

func (o *DigilockerFileDataRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataRequest) HasConsent

func (o *DigilockerFileDataRequest) HasConsent() bool

HasConsent returns a boolean if a field has been set.

func (*DigilockerFileDataRequest) HasFileUrn

func (o *DigilockerFileDataRequest) HasFileUrn() bool

HasFileUrn returns a boolean if a field has been set.

func (*DigilockerFileDataRequest) HasPurpose

func (o *DigilockerFileDataRequest) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (*DigilockerFileDataRequest) HasReferenceId

func (o *DigilockerFileDataRequest) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (DigilockerFileDataRequest) MarshalJSON

func (o DigilockerFileDataRequest) MarshalJSON() ([]byte, error)

func (*DigilockerFileDataRequest) SetConsent

func (o *DigilockerFileDataRequest) SetConsent(v bool)

SetConsent gets a reference to the given bool and assigns it to the Consent field.

func (*DigilockerFileDataRequest) SetFileUrn

func (o *DigilockerFileDataRequest) SetFileUrn(v string)

SetFileUrn gets a reference to the given string and assigns it to the FileUrn field.

func (*DigilockerFileDataRequest) SetPurpose

func (o *DigilockerFileDataRequest) SetPurpose(v string)

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*DigilockerFileDataRequest) SetReferenceId

func (o *DigilockerFileDataRequest) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

type DigilockerFileDataResponse added in v1.0.1

type DigilockerFileDataResponse struct {
	DecentroTxnId *string                         `json:"decentroTxnId,omitempty"`
	Status        *string                         `json:"status,omitempty"`
	ResponseCode  *string                         `json:"responseCode,omitempty"`
	Message       *string                         `json:"message,omitempty"`
	Data          *DigilockerFileDataResponseData `json:"data,omitempty"`
	ResponseKey   *string                         `json:"responseKey,omitempty"`
}

DigilockerFileDataResponse struct for DigilockerFileDataResponse

func NewDigilockerFileDataResponse added in v1.0.1

func NewDigilockerFileDataResponse() *DigilockerFileDataResponse

NewDigilockerFileDataResponse instantiates a new DigilockerFileDataResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerFileDataResponseWithDefaults added in v1.0.1

func NewDigilockerFileDataResponseWithDefaults() *DigilockerFileDataResponse

NewDigilockerFileDataResponseWithDefaults instantiates a new DigilockerFileDataResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerFileDataResponse) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*DigilockerFileDataResponse) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponse) GetDecentroTxnId added in v1.0.1

func (o *DigilockerFileDataResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerFileDataResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerFileDataResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponse) GetMessage added in v1.0.1

func (o *DigilockerFileDataResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerFileDataResponse) GetMessageOk added in v1.0.1

func (o *DigilockerFileDataResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponse) GetResponseCode added in v1.0.1

func (o *DigilockerFileDataResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerFileDataResponse) GetResponseCodeOk added in v1.0.1

func (o *DigilockerFileDataResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponse) GetResponseKey added in v1.0.1

func (o *DigilockerFileDataResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerFileDataResponse) GetResponseKeyOk added in v1.0.1

func (o *DigilockerFileDataResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponse) GetStatus added in v1.0.1

func (o *DigilockerFileDataResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerFileDataResponse) GetStatusOk added in v1.0.1

func (o *DigilockerFileDataResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponse) HasData added in v1.0.1

func (o *DigilockerFileDataResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*DigilockerFileDataResponse) HasDecentroTxnId added in v1.0.1

func (o *DigilockerFileDataResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerFileDataResponse) HasMessage added in v1.0.1

func (o *DigilockerFileDataResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DigilockerFileDataResponse) HasResponseCode added in v1.0.1

func (o *DigilockerFileDataResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerFileDataResponse) HasResponseKey added in v1.0.1

func (o *DigilockerFileDataResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerFileDataResponse) HasStatus added in v1.0.1

func (o *DigilockerFileDataResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DigilockerFileDataResponse) MarshalJSON added in v1.0.1

func (o DigilockerFileDataResponse) MarshalJSON() ([]byte, error)

func (*DigilockerFileDataResponse) SetData added in v1.0.1

SetData gets a reference to the given DigilockerFileDataResponseData and assigns it to the Data field.

func (*DigilockerFileDataResponse) SetDecentroTxnId added in v1.0.1

func (o *DigilockerFileDataResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerFileDataResponse) SetMessage added in v1.0.1

func (o *DigilockerFileDataResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerFileDataResponse) SetResponseCode added in v1.0.1

func (o *DigilockerFileDataResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerFileDataResponse) SetResponseKey added in v1.0.1

func (o *DigilockerFileDataResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerFileDataResponse) SetStatus added in v1.0.1

func (o *DigilockerFileDataResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerFileDataResponseData added in v1.0.1

type DigilockerFileDataResponseData struct {
	DocumentIssuer     *string `json:"documentIssuer,omitempty"`
	DocumentName       *string `json:"documentName,omitempty"`
	DocumentType       *string `json:"documentType,omitempty"`
	IdNumber           *string `json:"idNumber,omitempty"`
	UserName           *string `json:"userName,omitempty"`
	UserDateOfBirth    *string `json:"userDateOfBirth,omitempty"`
	UserGender         *string `json:"userGender,omitempty"`
	DocumentVerifiedOn *string `json:"documentVerifiedOn,omitempty"`
	DocumentStatus     *string `json:"documentStatus,omitempty"`
}

DigilockerFileDataResponseData struct for DigilockerFileDataResponseData

func NewDigilockerFileDataResponseData added in v1.0.1

func NewDigilockerFileDataResponseData() *DigilockerFileDataResponseData

NewDigilockerFileDataResponseData instantiates a new DigilockerFileDataResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerFileDataResponseDataWithDefaults added in v1.0.1

func NewDigilockerFileDataResponseDataWithDefaults() *DigilockerFileDataResponseData

NewDigilockerFileDataResponseDataWithDefaults instantiates a new DigilockerFileDataResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerFileDataResponseData) GetDocumentIssuer added in v1.0.1

func (o *DigilockerFileDataResponseData) GetDocumentIssuer() string

GetDocumentIssuer returns the DocumentIssuer field value if set, zero value otherwise.

func (*DigilockerFileDataResponseData) GetDocumentIssuerOk added in v1.0.1

func (o *DigilockerFileDataResponseData) GetDocumentIssuerOk() (*string, bool)

GetDocumentIssuerOk returns a tuple with the DocumentIssuer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponseData) GetDocumentName added in v1.0.1

func (o *DigilockerFileDataResponseData) GetDocumentName() string

GetDocumentName returns the DocumentName field value if set, zero value otherwise.

func (*DigilockerFileDataResponseData) GetDocumentNameOk added in v1.0.1

func (o *DigilockerFileDataResponseData) GetDocumentNameOk() (*string, bool)

GetDocumentNameOk returns a tuple with the DocumentName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponseData) GetDocumentStatus added in v1.0.1

func (o *DigilockerFileDataResponseData) GetDocumentStatus() string

GetDocumentStatus returns the DocumentStatus field value if set, zero value otherwise.

func (*DigilockerFileDataResponseData) GetDocumentStatusOk added in v1.0.1

func (o *DigilockerFileDataResponseData) GetDocumentStatusOk() (*string, bool)

GetDocumentStatusOk returns a tuple with the DocumentStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponseData) GetDocumentType added in v1.0.1

func (o *DigilockerFileDataResponseData) GetDocumentType() string

GetDocumentType returns the DocumentType field value if set, zero value otherwise.

func (*DigilockerFileDataResponseData) GetDocumentTypeOk added in v1.0.1

func (o *DigilockerFileDataResponseData) GetDocumentTypeOk() (*string, bool)

GetDocumentTypeOk returns a tuple with the DocumentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponseData) GetDocumentVerifiedOn added in v1.0.1

func (o *DigilockerFileDataResponseData) GetDocumentVerifiedOn() string

GetDocumentVerifiedOn returns the DocumentVerifiedOn field value if set, zero value otherwise.

func (*DigilockerFileDataResponseData) GetDocumentVerifiedOnOk added in v1.0.1

func (o *DigilockerFileDataResponseData) GetDocumentVerifiedOnOk() (*string, bool)

GetDocumentVerifiedOnOk returns a tuple with the DocumentVerifiedOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponseData) GetIdNumber added in v1.0.1

func (o *DigilockerFileDataResponseData) GetIdNumber() string

GetIdNumber returns the IdNumber field value if set, zero value otherwise.

func (*DigilockerFileDataResponseData) GetIdNumberOk added in v1.0.1

func (o *DigilockerFileDataResponseData) GetIdNumberOk() (*string, bool)

GetIdNumberOk returns a tuple with the IdNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponseData) GetUserDateOfBirth added in v1.0.1

func (o *DigilockerFileDataResponseData) GetUserDateOfBirth() string

GetUserDateOfBirth returns the UserDateOfBirth field value if set, zero value otherwise.

func (*DigilockerFileDataResponseData) GetUserDateOfBirthOk added in v1.0.1

func (o *DigilockerFileDataResponseData) GetUserDateOfBirthOk() (*string, bool)

GetUserDateOfBirthOk returns a tuple with the UserDateOfBirth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponseData) GetUserGender added in v1.0.1

func (o *DigilockerFileDataResponseData) GetUserGender() string

GetUserGender returns the UserGender field value if set, zero value otherwise.

func (*DigilockerFileDataResponseData) GetUserGenderOk added in v1.0.1

func (o *DigilockerFileDataResponseData) GetUserGenderOk() (*string, bool)

GetUserGenderOk returns a tuple with the UserGender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponseData) GetUserName added in v1.0.1

func (o *DigilockerFileDataResponseData) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*DigilockerFileDataResponseData) GetUserNameOk added in v1.0.1

func (o *DigilockerFileDataResponseData) GetUserNameOk() (*string, bool)

GetUserNameOk returns a tuple with the UserName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerFileDataResponseData) HasDocumentIssuer added in v1.0.1

func (o *DigilockerFileDataResponseData) HasDocumentIssuer() bool

HasDocumentIssuer returns a boolean if a field has been set.

func (*DigilockerFileDataResponseData) HasDocumentName added in v1.0.1

func (o *DigilockerFileDataResponseData) HasDocumentName() bool

HasDocumentName returns a boolean if a field has been set.

func (*DigilockerFileDataResponseData) HasDocumentStatus added in v1.0.1

func (o *DigilockerFileDataResponseData) HasDocumentStatus() bool

HasDocumentStatus returns a boolean if a field has been set.

func (*DigilockerFileDataResponseData) HasDocumentType added in v1.0.1

func (o *DigilockerFileDataResponseData) HasDocumentType() bool

HasDocumentType returns a boolean if a field has been set.

func (*DigilockerFileDataResponseData) HasDocumentVerifiedOn added in v1.0.1

func (o *DigilockerFileDataResponseData) HasDocumentVerifiedOn() bool

HasDocumentVerifiedOn returns a boolean if a field has been set.

func (*DigilockerFileDataResponseData) HasIdNumber added in v1.0.1

func (o *DigilockerFileDataResponseData) HasIdNumber() bool

HasIdNumber returns a boolean if a field has been set.

func (*DigilockerFileDataResponseData) HasUserDateOfBirth added in v1.0.1

func (o *DigilockerFileDataResponseData) HasUserDateOfBirth() bool

HasUserDateOfBirth returns a boolean if a field has been set.

func (*DigilockerFileDataResponseData) HasUserGender added in v1.0.1

func (o *DigilockerFileDataResponseData) HasUserGender() bool

HasUserGender returns a boolean if a field has been set.

func (*DigilockerFileDataResponseData) HasUserName added in v1.0.1

func (o *DigilockerFileDataResponseData) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (DigilockerFileDataResponseData) MarshalJSON added in v1.0.1

func (o DigilockerFileDataResponseData) MarshalJSON() ([]byte, error)

func (*DigilockerFileDataResponseData) SetDocumentIssuer added in v1.0.1

func (o *DigilockerFileDataResponseData) SetDocumentIssuer(v string)

SetDocumentIssuer gets a reference to the given string and assigns it to the DocumentIssuer field.

func (*DigilockerFileDataResponseData) SetDocumentName added in v1.0.1

func (o *DigilockerFileDataResponseData) SetDocumentName(v string)

SetDocumentName gets a reference to the given string and assigns it to the DocumentName field.

func (*DigilockerFileDataResponseData) SetDocumentStatus added in v1.0.1

func (o *DigilockerFileDataResponseData) SetDocumentStatus(v string)

SetDocumentStatus gets a reference to the given string and assigns it to the DocumentStatus field.

func (*DigilockerFileDataResponseData) SetDocumentType added in v1.0.1

func (o *DigilockerFileDataResponseData) SetDocumentType(v string)

SetDocumentType gets a reference to the given string and assigns it to the DocumentType field.

func (*DigilockerFileDataResponseData) SetDocumentVerifiedOn added in v1.0.1

func (o *DigilockerFileDataResponseData) SetDocumentVerifiedOn(v string)

SetDocumentVerifiedOn gets a reference to the given string and assigns it to the DocumentVerifiedOn field.

func (*DigilockerFileDataResponseData) SetIdNumber added in v1.0.1

func (o *DigilockerFileDataResponseData) SetIdNumber(v string)

SetIdNumber gets a reference to the given string and assigns it to the IdNumber field.

func (*DigilockerFileDataResponseData) SetUserDateOfBirth added in v1.0.1

func (o *DigilockerFileDataResponseData) SetUserDateOfBirth(v string)

SetUserDateOfBirth gets a reference to the given string and assigns it to the UserDateOfBirth field.

func (*DigilockerFileDataResponseData) SetUserGender added in v1.0.1

func (o *DigilockerFileDataResponseData) SetUserGender(v string)

SetUserGender gets a reference to the given string and assigns it to the UserGender field.

func (*DigilockerFileDataResponseData) SetUserName added in v1.0.1

func (o *DigilockerFileDataResponseData) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

type DigilockerGenerateAccessToken400Response added in v1.0.1

type DigilockerGenerateAccessToken400Response struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Status        *string `json:"status,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	Message       *string `json:"message,omitempty"`
	ResponseKey   *string `json:"responseKey,omitempty"`
}

DigilockerGenerateAccessToken400Response struct for DigilockerGenerateAccessToken400Response

func NewDigilockerGenerateAccessToken400Response added in v1.0.1

func NewDigilockerGenerateAccessToken400Response() *DigilockerGenerateAccessToken400Response

NewDigilockerGenerateAccessToken400Response instantiates a new DigilockerGenerateAccessToken400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerGenerateAccessToken400ResponseWithDefaults added in v1.0.1

func NewDigilockerGenerateAccessToken400ResponseWithDefaults() *DigilockerGenerateAccessToken400Response

NewDigilockerGenerateAccessToken400ResponseWithDefaults instantiates a new DigilockerGenerateAccessToken400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerGenerateAccessToken400Response) GetDecentroTxnId added in v1.0.1

func (o *DigilockerGenerateAccessToken400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerGenerateAccessToken400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerGenerateAccessToken400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessToken400Response) GetMessage added in v1.0.1

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerGenerateAccessToken400Response) GetMessageOk added in v1.0.1

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessToken400Response) GetResponseCode added in v1.0.1

func (o *DigilockerGenerateAccessToken400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerGenerateAccessToken400Response) GetResponseCodeOk added in v1.0.1

func (o *DigilockerGenerateAccessToken400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessToken400Response) GetResponseKey added in v1.0.1

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerGenerateAccessToken400Response) GetResponseKeyOk added in v1.0.1

func (o *DigilockerGenerateAccessToken400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessToken400Response) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerGenerateAccessToken400Response) GetStatusOk added in v1.0.1

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessToken400Response) HasDecentroTxnId added in v1.0.1

func (o *DigilockerGenerateAccessToken400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerGenerateAccessToken400Response) HasMessage added in v1.0.1

HasMessage returns a boolean if a field has been set.

func (*DigilockerGenerateAccessToken400Response) HasResponseCode added in v1.0.1

func (o *DigilockerGenerateAccessToken400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerGenerateAccessToken400Response) HasResponseKey added in v1.0.1

func (o *DigilockerGenerateAccessToken400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerGenerateAccessToken400Response) HasStatus added in v1.0.1

HasStatus returns a boolean if a field has been set.

func (DigilockerGenerateAccessToken400Response) MarshalJSON added in v1.0.1

func (*DigilockerGenerateAccessToken400Response) SetDecentroTxnId added in v1.0.1

func (o *DigilockerGenerateAccessToken400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerGenerateAccessToken400Response) SetMessage added in v1.0.1

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerGenerateAccessToken400Response) SetResponseCode added in v1.0.1

func (o *DigilockerGenerateAccessToken400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerGenerateAccessToken400Response) SetResponseKey added in v1.0.1

func (o *DigilockerGenerateAccessToken400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerGenerateAccessToken400Response) SetStatus added in v1.0.1

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerGenerateAccessTokenRequest

type DigilockerGenerateAccessTokenRequest struct {
	Code        *string `json:"code,omitempty"`
	Consent     *bool   `json:"consent,omitempty"`
	Purpose     *string `json:"purpose,omitempty"`
	ReferenceId *string `json:"reference_id,omitempty"`
}

DigilockerGenerateAccessTokenRequest struct for DigilockerGenerateAccessTokenRequest

func NewDigilockerGenerateAccessTokenRequest

func NewDigilockerGenerateAccessTokenRequest() *DigilockerGenerateAccessTokenRequest

NewDigilockerGenerateAccessTokenRequest instantiates a new DigilockerGenerateAccessTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerGenerateAccessTokenRequestWithDefaults

func NewDigilockerGenerateAccessTokenRequestWithDefaults() *DigilockerGenerateAccessTokenRequest

NewDigilockerGenerateAccessTokenRequestWithDefaults instantiates a new DigilockerGenerateAccessTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerGenerateAccessTokenRequest) GetCode

GetCode returns the Code field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenRequest) GetCodeOk

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenRequest) GetConsent

GetConsent returns the Consent field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenRequest) GetConsentOk

func (o *DigilockerGenerateAccessTokenRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenRequest) GetPurpose

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenRequest) GetPurposeOk

func (o *DigilockerGenerateAccessTokenRequest) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenRequest) GetReferenceId

func (o *DigilockerGenerateAccessTokenRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenRequest) GetReferenceIdOk

func (o *DigilockerGenerateAccessTokenRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenRequest) HasCode

HasCode returns a boolean if a field has been set.

func (*DigilockerGenerateAccessTokenRequest) HasConsent

HasConsent returns a boolean if a field has been set.

func (*DigilockerGenerateAccessTokenRequest) HasPurpose

HasPurpose returns a boolean if a field has been set.

func (*DigilockerGenerateAccessTokenRequest) HasReferenceId

func (o *DigilockerGenerateAccessTokenRequest) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (DigilockerGenerateAccessTokenRequest) MarshalJSON

func (o DigilockerGenerateAccessTokenRequest) MarshalJSON() ([]byte, error)

func (*DigilockerGenerateAccessTokenRequest) SetCode

SetCode gets a reference to the given string and assigns it to the Code field.

func (*DigilockerGenerateAccessTokenRequest) SetConsent

func (o *DigilockerGenerateAccessTokenRequest) SetConsent(v bool)

SetConsent gets a reference to the given bool and assigns it to the Consent field.

func (*DigilockerGenerateAccessTokenRequest) SetPurpose

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*DigilockerGenerateAccessTokenRequest) SetReferenceId

func (o *DigilockerGenerateAccessTokenRequest) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

type DigilockerGenerateAccessTokenResponse added in v1.0.1

type DigilockerGenerateAccessTokenResponse struct {
	DecentroTxnId *string                                    `json:"decentroTxnId,omitempty"`
	Status        *string                                    `json:"status,omitempty"`
	ResponseCode  *string                                    `json:"responseCode,omitempty"`
	Message       *string                                    `json:"message,omitempty"`
	Data          *DigilockerGenerateAccessTokenResponseData `json:"data,omitempty"`
	ResponseKey   *string                                    `json:"responseKey,omitempty"`
}

DigilockerGenerateAccessTokenResponse struct for DigilockerGenerateAccessTokenResponse

func NewDigilockerGenerateAccessTokenResponse added in v1.0.1

func NewDigilockerGenerateAccessTokenResponse() *DigilockerGenerateAccessTokenResponse

NewDigilockerGenerateAccessTokenResponse instantiates a new DigilockerGenerateAccessTokenResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerGenerateAccessTokenResponseWithDefaults added in v1.0.1

func NewDigilockerGenerateAccessTokenResponseWithDefaults() *DigilockerGenerateAccessTokenResponse

NewDigilockerGenerateAccessTokenResponseWithDefaults instantiates a new DigilockerGenerateAccessTokenResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerGenerateAccessTokenResponse) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenResponse) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenResponse) GetDecentroTxnId added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenResponse) GetMessage added in v1.0.1

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenResponse) GetMessageOk added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenResponse) GetResponseCode added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenResponse) GetResponseCodeOk added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenResponse) GetResponseKey added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenResponse) GetResponseKeyOk added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenResponse) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenResponse) GetStatusOk added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenResponse) HasData added in v1.0.1

HasData returns a boolean if a field has been set.

func (*DigilockerGenerateAccessTokenResponse) HasDecentroTxnId added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerGenerateAccessTokenResponse) HasMessage added in v1.0.1

HasMessage returns a boolean if a field has been set.

func (*DigilockerGenerateAccessTokenResponse) HasResponseCode added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerGenerateAccessTokenResponse) HasResponseKey added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerGenerateAccessTokenResponse) HasStatus added in v1.0.1

HasStatus returns a boolean if a field has been set.

func (DigilockerGenerateAccessTokenResponse) MarshalJSON added in v1.0.1

func (o DigilockerGenerateAccessTokenResponse) MarshalJSON() ([]byte, error)

func (*DigilockerGenerateAccessTokenResponse) SetData added in v1.0.1

SetData gets a reference to the given DigilockerGenerateAccessTokenResponseData and assigns it to the Data field.

func (*DigilockerGenerateAccessTokenResponse) SetDecentroTxnId added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerGenerateAccessTokenResponse) SetMessage added in v1.0.1

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerGenerateAccessTokenResponse) SetResponseCode added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerGenerateAccessTokenResponse) SetResponseKey added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerGenerateAccessTokenResponse) SetStatus added in v1.0.1

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerGenerateAccessTokenResponseData added in v1.0.1

type DigilockerGenerateAccessTokenResponseData struct {
	ExpiresIn *float32 `json:"expiresIn,omitempty"`
	Name      *string  `json:"name,omitempty"`
	Dob       *string  `json:"dob,omitempty"`
	Gender    *string  `json:"gender,omitempty"`
	Eaadhaar  *string  `json:"eaadhaar,omitempty"`
}

DigilockerGenerateAccessTokenResponseData struct for DigilockerGenerateAccessTokenResponseData

func NewDigilockerGenerateAccessTokenResponseData added in v1.0.1

func NewDigilockerGenerateAccessTokenResponseData() *DigilockerGenerateAccessTokenResponseData

NewDigilockerGenerateAccessTokenResponseData instantiates a new DigilockerGenerateAccessTokenResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerGenerateAccessTokenResponseDataWithDefaults added in v1.0.1

func NewDigilockerGenerateAccessTokenResponseDataWithDefaults() *DigilockerGenerateAccessTokenResponseData

NewDigilockerGenerateAccessTokenResponseDataWithDefaults instantiates a new DigilockerGenerateAccessTokenResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerGenerateAccessTokenResponseData) GetDob added in v1.0.1

GetDob returns the Dob field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenResponseData) GetDobOk added in v1.0.1

GetDobOk returns a tuple with the Dob field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenResponseData) GetEaadhaar added in v1.0.1

GetEaadhaar returns the Eaadhaar field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenResponseData) GetEaadhaarOk added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponseData) GetEaadhaarOk() (*string, bool)

GetEaadhaarOk returns a tuple with the Eaadhaar field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenResponseData) GetExpiresIn added in v1.0.1

GetExpiresIn returns the ExpiresIn field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenResponseData) GetExpiresInOk added in v1.0.1

func (o *DigilockerGenerateAccessTokenResponseData) GetExpiresInOk() (*float32, bool)

GetExpiresInOk returns a tuple with the ExpiresIn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenResponseData) GetGender added in v1.0.1

GetGender returns the Gender field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenResponseData) GetGenderOk added in v1.0.1

GetGenderOk returns a tuple with the Gender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenResponseData) GetName added in v1.0.1

GetName returns the Name field value if set, zero value otherwise.

func (*DigilockerGenerateAccessTokenResponseData) GetNameOk added in v1.0.1

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerGenerateAccessTokenResponseData) HasDob added in v1.0.1

HasDob returns a boolean if a field has been set.

func (*DigilockerGenerateAccessTokenResponseData) HasEaadhaar added in v1.0.1

HasEaadhaar returns a boolean if a field has been set.

func (*DigilockerGenerateAccessTokenResponseData) HasExpiresIn added in v1.0.1

HasExpiresIn returns a boolean if a field has been set.

func (*DigilockerGenerateAccessTokenResponseData) HasGender added in v1.0.1

HasGender returns a boolean if a field has been set.

func (*DigilockerGenerateAccessTokenResponseData) HasName added in v1.0.1

HasName returns a boolean if a field has been set.

func (DigilockerGenerateAccessTokenResponseData) MarshalJSON added in v1.0.1

func (*DigilockerGenerateAccessTokenResponseData) SetDob added in v1.0.1

SetDob gets a reference to the given string and assigns it to the Dob field.

func (*DigilockerGenerateAccessTokenResponseData) SetEaadhaar added in v1.0.1

SetEaadhaar gets a reference to the given string and assigns it to the Eaadhaar field.

func (*DigilockerGenerateAccessTokenResponseData) SetExpiresIn added in v1.0.1

SetExpiresIn gets a reference to the given float32 and assigns it to the ExpiresIn field.

func (*DigilockerGenerateAccessTokenResponseData) SetGender added in v1.0.1

SetGender gets a reference to the given string and assigns it to the Gender field.

func (*DigilockerGenerateAccessTokenResponseData) SetName added in v1.0.1

SetName gets a reference to the given string and assigns it to the Name field.

type DigilockerInitiateSession400Response added in v1.0.1

type DigilockerInitiateSession400Response struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Status        *string `json:"status,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	Message       *string `json:"message,omitempty"`
	ResponseKey   *string `json:"responseKey,omitempty"`
}

DigilockerInitiateSession400Response struct for DigilockerInitiateSession400Response

func NewDigilockerInitiateSession400Response added in v1.0.1

func NewDigilockerInitiateSession400Response() *DigilockerInitiateSession400Response

NewDigilockerInitiateSession400Response instantiates a new DigilockerInitiateSession400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerInitiateSession400ResponseWithDefaults added in v1.0.1

func NewDigilockerInitiateSession400ResponseWithDefaults() *DigilockerInitiateSession400Response

NewDigilockerInitiateSession400ResponseWithDefaults instantiates a new DigilockerInitiateSession400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerInitiateSession400Response) GetDecentroTxnId added in v1.0.1

func (o *DigilockerInitiateSession400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerInitiateSession400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerInitiateSession400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSession400Response) GetMessage added in v1.0.1

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerInitiateSession400Response) GetMessageOk added in v1.0.1

func (o *DigilockerInitiateSession400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSession400Response) GetResponseCode added in v1.0.1

func (o *DigilockerInitiateSession400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerInitiateSession400Response) GetResponseCodeOk added in v1.0.1

func (o *DigilockerInitiateSession400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSession400Response) GetResponseKey added in v1.0.1

func (o *DigilockerInitiateSession400Response) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerInitiateSession400Response) GetResponseKeyOk added in v1.0.1

func (o *DigilockerInitiateSession400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSession400Response) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerInitiateSession400Response) GetStatusOk added in v1.0.1

func (o *DigilockerInitiateSession400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSession400Response) HasDecentroTxnId added in v1.0.1

func (o *DigilockerInitiateSession400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerInitiateSession400Response) HasMessage added in v1.0.1

HasMessage returns a boolean if a field has been set.

func (*DigilockerInitiateSession400Response) HasResponseCode added in v1.0.1

func (o *DigilockerInitiateSession400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerInitiateSession400Response) HasResponseKey added in v1.0.1

func (o *DigilockerInitiateSession400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerInitiateSession400Response) HasStatus added in v1.0.1

HasStatus returns a boolean if a field has been set.

func (DigilockerInitiateSession400Response) MarshalJSON added in v1.0.1

func (o DigilockerInitiateSession400Response) MarshalJSON() ([]byte, error)

func (*DigilockerInitiateSession400Response) SetDecentroTxnId added in v1.0.1

func (o *DigilockerInitiateSession400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerInitiateSession400Response) SetMessage added in v1.0.1

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerInitiateSession400Response) SetResponseCode added in v1.0.1

func (o *DigilockerInitiateSession400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerInitiateSession400Response) SetResponseKey added in v1.0.1

func (o *DigilockerInitiateSession400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerInitiateSession400Response) SetStatus added in v1.0.1

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerInitiateSessionRequest

type DigilockerInitiateSessionRequest struct {
	Consent     *bool   `json:"consent,omitempty"`
	Purpose     *string `json:"purpose,omitempty"`
	ReferenceId *string `json:"reference_id,omitempty"`
	RedirectUrl *string `json:"redirect_url,omitempty"`
}

DigilockerInitiateSessionRequest struct for DigilockerInitiateSessionRequest

func NewDigilockerInitiateSessionRequest

func NewDigilockerInitiateSessionRequest() *DigilockerInitiateSessionRequest

NewDigilockerInitiateSessionRequest instantiates a new DigilockerInitiateSessionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerInitiateSessionRequestWithDefaults

func NewDigilockerInitiateSessionRequestWithDefaults() *DigilockerInitiateSessionRequest

NewDigilockerInitiateSessionRequestWithDefaults instantiates a new DigilockerInitiateSessionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerInitiateSessionRequest) GetConsent

func (o *DigilockerInitiateSessionRequest) GetConsent() bool

GetConsent returns the Consent field value if set, zero value otherwise.

func (*DigilockerInitiateSessionRequest) GetConsentOk

func (o *DigilockerInitiateSessionRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSessionRequest) GetPurpose

func (o *DigilockerInitiateSessionRequest) GetPurpose() string

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*DigilockerInitiateSessionRequest) GetPurposeOk

func (o *DigilockerInitiateSessionRequest) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSessionRequest) GetRedirectUrl

func (o *DigilockerInitiateSessionRequest) GetRedirectUrl() string

GetRedirectUrl returns the RedirectUrl field value if set, zero value otherwise.

func (*DigilockerInitiateSessionRequest) GetRedirectUrlOk

func (o *DigilockerInitiateSessionRequest) GetRedirectUrlOk() (*string, bool)

GetRedirectUrlOk returns a tuple with the RedirectUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSessionRequest) GetReferenceId

func (o *DigilockerInitiateSessionRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*DigilockerInitiateSessionRequest) GetReferenceIdOk

func (o *DigilockerInitiateSessionRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSessionRequest) HasConsent

func (o *DigilockerInitiateSessionRequest) HasConsent() bool

HasConsent returns a boolean if a field has been set.

func (*DigilockerInitiateSessionRequest) HasPurpose

func (o *DigilockerInitiateSessionRequest) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (*DigilockerInitiateSessionRequest) HasRedirectUrl

func (o *DigilockerInitiateSessionRequest) HasRedirectUrl() bool

HasRedirectUrl returns a boolean if a field has been set.

func (*DigilockerInitiateSessionRequest) HasReferenceId

func (o *DigilockerInitiateSessionRequest) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (DigilockerInitiateSessionRequest) MarshalJSON

func (o DigilockerInitiateSessionRequest) MarshalJSON() ([]byte, error)

func (*DigilockerInitiateSessionRequest) SetConsent

func (o *DigilockerInitiateSessionRequest) SetConsent(v bool)

SetConsent gets a reference to the given bool and assigns it to the Consent field.

func (*DigilockerInitiateSessionRequest) SetPurpose

func (o *DigilockerInitiateSessionRequest) SetPurpose(v string)

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*DigilockerInitiateSessionRequest) SetRedirectUrl

func (o *DigilockerInitiateSessionRequest) SetRedirectUrl(v string)

SetRedirectUrl gets a reference to the given string and assigns it to the RedirectUrl field.

func (*DigilockerInitiateSessionRequest) SetReferenceId

func (o *DigilockerInitiateSessionRequest) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

type DigilockerInitiateSessionResponse added in v1.0.1

type DigilockerInitiateSessionResponse struct {
	DecentroTxnId *string                                `json:"decentroTxnId,omitempty"`
	Status        *string                                `json:"status,omitempty"`
	ResponseCode  *string                                `json:"responseCode,omitempty"`
	Message       *string                                `json:"message,omitempty"`
	Data          *DigilockerInitiateSessionResponseData `json:"data,omitempty"`
	ResponseKey   *string                                `json:"responseKey,omitempty"`
}

DigilockerInitiateSessionResponse struct for DigilockerInitiateSessionResponse

func NewDigilockerInitiateSessionResponse added in v1.0.1

func NewDigilockerInitiateSessionResponse() *DigilockerInitiateSessionResponse

NewDigilockerInitiateSessionResponse instantiates a new DigilockerInitiateSessionResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerInitiateSessionResponseWithDefaults added in v1.0.1

func NewDigilockerInitiateSessionResponseWithDefaults() *DigilockerInitiateSessionResponse

NewDigilockerInitiateSessionResponseWithDefaults instantiates a new DigilockerInitiateSessionResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerInitiateSessionResponse) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*DigilockerInitiateSessionResponse) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSessionResponse) GetDecentroTxnId added in v1.0.1

func (o *DigilockerInitiateSessionResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerInitiateSessionResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerInitiateSessionResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSessionResponse) GetMessage added in v1.0.1

func (o *DigilockerInitiateSessionResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerInitiateSessionResponse) GetMessageOk added in v1.0.1

func (o *DigilockerInitiateSessionResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSessionResponse) GetResponseCode added in v1.0.1

func (o *DigilockerInitiateSessionResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerInitiateSessionResponse) GetResponseCodeOk added in v1.0.1

func (o *DigilockerInitiateSessionResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSessionResponse) GetResponseKey added in v1.0.1

func (o *DigilockerInitiateSessionResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerInitiateSessionResponse) GetResponseKeyOk added in v1.0.1

func (o *DigilockerInitiateSessionResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSessionResponse) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerInitiateSessionResponse) GetStatusOk added in v1.0.1

func (o *DigilockerInitiateSessionResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSessionResponse) HasData added in v1.0.1

HasData returns a boolean if a field has been set.

func (*DigilockerInitiateSessionResponse) HasDecentroTxnId added in v1.0.1

func (o *DigilockerInitiateSessionResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerInitiateSessionResponse) HasMessage added in v1.0.1

func (o *DigilockerInitiateSessionResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DigilockerInitiateSessionResponse) HasResponseCode added in v1.0.1

func (o *DigilockerInitiateSessionResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerInitiateSessionResponse) HasResponseKey added in v1.0.1

func (o *DigilockerInitiateSessionResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerInitiateSessionResponse) HasStatus added in v1.0.1

func (o *DigilockerInitiateSessionResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DigilockerInitiateSessionResponse) MarshalJSON added in v1.0.1

func (o DigilockerInitiateSessionResponse) MarshalJSON() ([]byte, error)

func (*DigilockerInitiateSessionResponse) SetData added in v1.0.1

SetData gets a reference to the given DigilockerInitiateSessionResponseData and assigns it to the Data field.

func (*DigilockerInitiateSessionResponse) SetDecentroTxnId added in v1.0.1

func (o *DigilockerInitiateSessionResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerInitiateSessionResponse) SetMessage added in v1.0.1

func (o *DigilockerInitiateSessionResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerInitiateSessionResponse) SetResponseCode added in v1.0.1

func (o *DigilockerInitiateSessionResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerInitiateSessionResponse) SetResponseKey added in v1.0.1

func (o *DigilockerInitiateSessionResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerInitiateSessionResponse) SetStatus added in v1.0.1

func (o *DigilockerInitiateSessionResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerInitiateSessionResponseData added in v1.0.1

type DigilockerInitiateSessionResponseData struct {
	AuthorizationUrl *string `json:"authorizationUrl,omitempty"`
}

DigilockerInitiateSessionResponseData struct for DigilockerInitiateSessionResponseData

func NewDigilockerInitiateSessionResponseData added in v1.0.1

func NewDigilockerInitiateSessionResponseData() *DigilockerInitiateSessionResponseData

NewDigilockerInitiateSessionResponseData instantiates a new DigilockerInitiateSessionResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerInitiateSessionResponseDataWithDefaults added in v1.0.1

func NewDigilockerInitiateSessionResponseDataWithDefaults() *DigilockerInitiateSessionResponseData

NewDigilockerInitiateSessionResponseDataWithDefaults instantiates a new DigilockerInitiateSessionResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerInitiateSessionResponseData) GetAuthorizationUrl added in v1.0.1

func (o *DigilockerInitiateSessionResponseData) GetAuthorizationUrl() string

GetAuthorizationUrl returns the AuthorizationUrl field value if set, zero value otherwise.

func (*DigilockerInitiateSessionResponseData) GetAuthorizationUrlOk added in v1.0.1

func (o *DigilockerInitiateSessionResponseData) GetAuthorizationUrlOk() (*string, bool)

GetAuthorizationUrlOk returns a tuple with the AuthorizationUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerInitiateSessionResponseData) HasAuthorizationUrl added in v1.0.1

func (o *DigilockerInitiateSessionResponseData) HasAuthorizationUrl() bool

HasAuthorizationUrl returns a boolean if a field has been set.

func (DigilockerInitiateSessionResponseData) MarshalJSON added in v1.0.1

func (o DigilockerInitiateSessionResponseData) MarshalJSON() ([]byte, error)

func (*DigilockerInitiateSessionResponseData) SetAuthorizationUrl added in v1.0.1

func (o *DigilockerInitiateSessionResponseData) SetAuthorizationUrl(v string)

SetAuthorizationUrl gets a reference to the given string and assigns it to the AuthorizationUrl field.

type DigilockerIssuedFiles400Response added in v1.0.1

type DigilockerIssuedFiles400Response struct {
	Data          []DigilockerIssuedFiles400ResponseDataInner `json:"data,omitempty"`
	DecentroTxnId *string                                     `json:"decentroTxnId,omitempty"`
	Message       *string                                     `json:"message,omitempty"`
	ResponseCode  *string                                     `json:"responseCode,omitempty"`
	ResponseKey   *string                                     `json:"responseKey,omitempty"`
	Status        *string                                     `json:"status,omitempty"`
}

DigilockerIssuedFiles400Response struct for DigilockerIssuedFiles400Response

func NewDigilockerIssuedFiles400Response added in v1.0.1

func NewDigilockerIssuedFiles400Response() *DigilockerIssuedFiles400Response

NewDigilockerIssuedFiles400Response instantiates a new DigilockerIssuedFiles400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerIssuedFiles400ResponseWithDefaults added in v1.0.1

func NewDigilockerIssuedFiles400ResponseWithDefaults() *DigilockerIssuedFiles400Response

NewDigilockerIssuedFiles400ResponseWithDefaults instantiates a new DigilockerIssuedFiles400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerIssuedFiles400Response) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400Response) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400Response) GetDecentroTxnId added in v1.0.1

func (o *DigilockerIssuedFiles400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerIssuedFiles400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400Response) GetMessage added in v1.0.1

func (o *DigilockerIssuedFiles400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400Response) GetMessageOk added in v1.0.1

func (o *DigilockerIssuedFiles400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400Response) GetResponseCode added in v1.0.1

func (o *DigilockerIssuedFiles400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400Response) GetResponseCodeOk added in v1.0.1

func (o *DigilockerIssuedFiles400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400Response) GetResponseKey added in v1.0.1

func (o *DigilockerIssuedFiles400Response) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400Response) GetResponseKeyOk added in v1.0.1

func (o *DigilockerIssuedFiles400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400Response) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400Response) GetStatusOk added in v1.0.1

func (o *DigilockerIssuedFiles400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400Response) HasData added in v1.0.1

HasData returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400Response) HasDecentroTxnId added in v1.0.1

func (o *DigilockerIssuedFiles400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400Response) HasMessage added in v1.0.1

func (o *DigilockerIssuedFiles400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400Response) HasResponseCode added in v1.0.1

func (o *DigilockerIssuedFiles400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400Response) HasResponseKey added in v1.0.1

func (o *DigilockerIssuedFiles400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400Response) HasStatus added in v1.0.1

func (o *DigilockerIssuedFiles400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DigilockerIssuedFiles400Response) MarshalJSON added in v1.0.1

func (o DigilockerIssuedFiles400Response) MarshalJSON() ([]byte, error)

func (*DigilockerIssuedFiles400Response) SetData added in v1.0.1

SetData gets a reference to the given []DigilockerIssuedFiles400ResponseDataInner and assigns it to the Data field.

func (*DigilockerIssuedFiles400Response) SetDecentroTxnId added in v1.0.1

func (o *DigilockerIssuedFiles400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerIssuedFiles400Response) SetMessage added in v1.0.1

func (o *DigilockerIssuedFiles400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerIssuedFiles400Response) SetResponseCode added in v1.0.1

func (o *DigilockerIssuedFiles400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerIssuedFiles400Response) SetResponseKey added in v1.0.1

func (o *DigilockerIssuedFiles400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerIssuedFiles400Response) SetStatus added in v1.0.1

func (o *DigilockerIssuedFiles400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerIssuedFiles400ResponseDataInner added in v1.0.1

type DigilockerIssuedFiles400ResponseDataInner struct {
	Description *string  `json:"description,omitempty"`
	Date        *string  `json:"date,omitempty"`
	Doctype     *string  `json:"doctype,omitempty"`
	Issuer      *string  `json:"issuer,omitempty"`
	Issuerid    *string  `json:"issuerid,omitempty"`
	Mime        []string `json:"mime,omitempty"`
	Name        *string  `json:"name,omitempty"`
	Parent      *string  `json:"parent,omitempty"`
	Size        *string  `json:"size,omitempty"`
	Type        *string  `json:"type,omitempty"`
	Uri         *string  `json:"uri,omitempty"`
}

DigilockerIssuedFiles400ResponseDataInner struct for DigilockerIssuedFiles400ResponseDataInner

func NewDigilockerIssuedFiles400ResponseDataInner added in v1.0.1

func NewDigilockerIssuedFiles400ResponseDataInner() *DigilockerIssuedFiles400ResponseDataInner

NewDigilockerIssuedFiles400ResponseDataInner instantiates a new DigilockerIssuedFiles400ResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerIssuedFiles400ResponseDataInnerWithDefaults added in v1.0.1

func NewDigilockerIssuedFiles400ResponseDataInnerWithDefaults() *DigilockerIssuedFiles400ResponseDataInner

NewDigilockerIssuedFiles400ResponseDataInnerWithDefaults instantiates a new DigilockerIssuedFiles400ResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerIssuedFiles400ResponseDataInner) GetDate added in v1.0.1

GetDate returns the Date field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400ResponseDataInner) GetDateOk added in v1.0.1

GetDateOk returns a tuple with the Date field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) GetDescription added in v1.0.1

GetDescription returns the Description field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400ResponseDataInner) GetDescriptionOk added in v1.0.1

func (o *DigilockerIssuedFiles400ResponseDataInner) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) GetDoctype added in v1.0.1

GetDoctype returns the Doctype field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400ResponseDataInner) GetDoctypeOk added in v1.0.1

GetDoctypeOk returns a tuple with the Doctype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) GetIssuer added in v1.0.1

GetIssuer returns the Issuer field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400ResponseDataInner) GetIssuerOk added in v1.0.1

GetIssuerOk returns a tuple with the Issuer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) GetIssuerid added in v1.0.1

GetIssuerid returns the Issuerid field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400ResponseDataInner) GetIssueridOk added in v1.0.1

func (o *DigilockerIssuedFiles400ResponseDataInner) GetIssueridOk() (*string, bool)

GetIssueridOk returns a tuple with the Issuerid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) GetMime added in v1.0.1

GetMime returns the Mime field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400ResponseDataInner) GetMimeOk added in v1.0.1

GetMimeOk returns a tuple with the Mime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) GetName added in v1.0.1

GetName returns the Name field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400ResponseDataInner) GetNameOk added in v1.0.1

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) GetParent added in v1.0.1

GetParent returns the Parent field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400ResponseDataInner) GetParentOk added in v1.0.1

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) GetSize added in v1.0.1

GetSize returns the Size field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400ResponseDataInner) GetSizeOk added in v1.0.1

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) GetType added in v1.0.1

GetType returns the Type field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400ResponseDataInner) GetTypeOk added in v1.0.1

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) GetUri added in v1.0.1

GetUri returns the Uri field value if set, zero value otherwise.

func (*DigilockerIssuedFiles400ResponseDataInner) GetUriOk added in v1.0.1

GetUriOk returns a tuple with the Uri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) HasDate added in v1.0.1

HasDate returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) HasDescription added in v1.0.1

func (o *DigilockerIssuedFiles400ResponseDataInner) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) HasDoctype added in v1.0.1

HasDoctype returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) HasIssuer added in v1.0.1

HasIssuer returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) HasIssuerid added in v1.0.1

HasIssuerid returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) HasMime added in v1.0.1

HasMime returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) HasName added in v1.0.1

HasName returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) HasParent added in v1.0.1

HasParent returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) HasSize added in v1.0.1

HasSize returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) HasType added in v1.0.1

HasType returns a boolean if a field has been set.

func (*DigilockerIssuedFiles400ResponseDataInner) HasUri added in v1.0.1

HasUri returns a boolean if a field has been set.

func (DigilockerIssuedFiles400ResponseDataInner) MarshalJSON added in v1.0.1

func (*DigilockerIssuedFiles400ResponseDataInner) SetDate added in v1.0.1

SetDate gets a reference to the given string and assigns it to the Date field.

func (*DigilockerIssuedFiles400ResponseDataInner) SetDescription added in v1.0.1

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*DigilockerIssuedFiles400ResponseDataInner) SetDoctype added in v1.0.1

SetDoctype gets a reference to the given string and assigns it to the Doctype field.

func (*DigilockerIssuedFiles400ResponseDataInner) SetIssuer added in v1.0.1

SetIssuer gets a reference to the given string and assigns it to the Issuer field.

func (*DigilockerIssuedFiles400ResponseDataInner) SetIssuerid added in v1.0.1

SetIssuerid gets a reference to the given string and assigns it to the Issuerid field.

func (*DigilockerIssuedFiles400ResponseDataInner) SetMime added in v1.0.1

SetMime gets a reference to the given []string and assigns it to the Mime field.

func (*DigilockerIssuedFiles400ResponseDataInner) SetName added in v1.0.1

SetName gets a reference to the given string and assigns it to the Name field.

func (*DigilockerIssuedFiles400ResponseDataInner) SetParent added in v1.0.1

SetParent gets a reference to the given string and assigns it to the Parent field.

func (*DigilockerIssuedFiles400ResponseDataInner) SetSize added in v1.0.1

SetSize gets a reference to the given string and assigns it to the Size field.

func (*DigilockerIssuedFiles400ResponseDataInner) SetType added in v1.0.1

SetType gets a reference to the given string and assigns it to the Type field.

func (*DigilockerIssuedFiles400ResponseDataInner) SetUri added in v1.0.1

SetUri gets a reference to the given string and assigns it to the Uri field.

type DigilockerIssuedFilesRequest

type DigilockerIssuedFilesRequest struct {
	Consent     *bool   `json:"consent,omitempty"`
	Purpose     *string `json:"purpose,omitempty"`
	ReferenceId *string `json:"reference_id,omitempty"`
}

DigilockerIssuedFilesRequest struct for DigilockerIssuedFilesRequest

func NewDigilockerIssuedFilesRequest

func NewDigilockerIssuedFilesRequest() *DigilockerIssuedFilesRequest

NewDigilockerIssuedFilesRequest instantiates a new DigilockerIssuedFilesRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerIssuedFilesRequestWithDefaults

func NewDigilockerIssuedFilesRequestWithDefaults() *DigilockerIssuedFilesRequest

NewDigilockerIssuedFilesRequestWithDefaults instantiates a new DigilockerIssuedFilesRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerIssuedFilesRequest) GetConsent

func (o *DigilockerIssuedFilesRequest) GetConsent() bool

GetConsent returns the Consent field value if set, zero value otherwise.

func (*DigilockerIssuedFilesRequest) GetConsentOk

func (o *DigilockerIssuedFilesRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesRequest) GetPurpose

func (o *DigilockerIssuedFilesRequest) GetPurpose() string

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*DigilockerIssuedFilesRequest) GetPurposeOk

func (o *DigilockerIssuedFilesRequest) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesRequest) GetReferenceId

func (o *DigilockerIssuedFilesRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*DigilockerIssuedFilesRequest) GetReferenceIdOk

func (o *DigilockerIssuedFilesRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesRequest) HasConsent

func (o *DigilockerIssuedFilesRequest) HasConsent() bool

HasConsent returns a boolean if a field has been set.

func (*DigilockerIssuedFilesRequest) HasPurpose

func (o *DigilockerIssuedFilesRequest) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (*DigilockerIssuedFilesRequest) HasReferenceId

func (o *DigilockerIssuedFilesRequest) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (DigilockerIssuedFilesRequest) MarshalJSON

func (o DigilockerIssuedFilesRequest) MarshalJSON() ([]byte, error)

func (*DigilockerIssuedFilesRequest) SetConsent

func (o *DigilockerIssuedFilesRequest) SetConsent(v bool)

SetConsent gets a reference to the given bool and assigns it to the Consent field.

func (*DigilockerIssuedFilesRequest) SetPurpose

func (o *DigilockerIssuedFilesRequest) SetPurpose(v string)

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*DigilockerIssuedFilesRequest) SetReferenceId

func (o *DigilockerIssuedFilesRequest) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

type DigilockerIssuedFilesResponse added in v1.0.1

type DigilockerIssuedFilesResponse struct {
	DecentroTxnId *string                                  `json:"decentroTxnId,omitempty"`
	Status        *string                                  `json:"status,omitempty"`
	ResponseCode  *string                                  `json:"responseCode,omitempty"`
	Message       *string                                  `json:"message,omitempty"`
	Data          []DigilockerIssuedFilesResponseDataInner `json:"data,omitempty"`
	ResponseKey   *string                                  `json:"responseKey,omitempty"`
}

DigilockerIssuedFilesResponse struct for DigilockerIssuedFilesResponse

func NewDigilockerIssuedFilesResponse added in v1.0.1

func NewDigilockerIssuedFilesResponse() *DigilockerIssuedFilesResponse

NewDigilockerIssuedFilesResponse instantiates a new DigilockerIssuedFilesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerIssuedFilesResponseWithDefaults added in v1.0.1

func NewDigilockerIssuedFilesResponseWithDefaults() *DigilockerIssuedFilesResponse

NewDigilockerIssuedFilesResponseWithDefaults instantiates a new DigilockerIssuedFilesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerIssuedFilesResponse) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponse) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponse) GetDecentroTxnId added in v1.0.1

func (o *DigilockerIssuedFilesResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerIssuedFilesResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponse) GetMessage added in v1.0.1

func (o *DigilockerIssuedFilesResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponse) GetMessageOk added in v1.0.1

func (o *DigilockerIssuedFilesResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponse) GetResponseCode added in v1.0.1

func (o *DigilockerIssuedFilesResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponse) GetResponseCodeOk added in v1.0.1

func (o *DigilockerIssuedFilesResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponse) GetResponseKey added in v1.0.1

func (o *DigilockerIssuedFilesResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponse) GetResponseKeyOk added in v1.0.1

func (o *DigilockerIssuedFilesResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponse) GetStatus added in v1.0.1

func (o *DigilockerIssuedFilesResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponse) GetStatusOk added in v1.0.1

func (o *DigilockerIssuedFilesResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponse) HasData added in v1.0.1

func (o *DigilockerIssuedFilesResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponse) HasDecentroTxnId added in v1.0.1

func (o *DigilockerIssuedFilesResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponse) HasMessage added in v1.0.1

func (o *DigilockerIssuedFilesResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponse) HasResponseCode added in v1.0.1

func (o *DigilockerIssuedFilesResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponse) HasResponseKey added in v1.0.1

func (o *DigilockerIssuedFilesResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponse) HasStatus added in v1.0.1

func (o *DigilockerIssuedFilesResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DigilockerIssuedFilesResponse) MarshalJSON added in v1.0.1

func (o DigilockerIssuedFilesResponse) MarshalJSON() ([]byte, error)

func (*DigilockerIssuedFilesResponse) SetData added in v1.0.1

SetData gets a reference to the given []DigilockerIssuedFilesResponseDataInner and assigns it to the Data field.

func (*DigilockerIssuedFilesResponse) SetDecentroTxnId added in v1.0.1

func (o *DigilockerIssuedFilesResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerIssuedFilesResponse) SetMessage added in v1.0.1

func (o *DigilockerIssuedFilesResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerIssuedFilesResponse) SetResponseCode added in v1.0.1

func (o *DigilockerIssuedFilesResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerIssuedFilesResponse) SetResponseKey added in v1.0.1

func (o *DigilockerIssuedFilesResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerIssuedFilesResponse) SetStatus added in v1.0.1

func (o *DigilockerIssuedFilesResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerIssuedFilesResponseDataInner added in v1.0.1

type DigilockerIssuedFilesResponseDataInner struct {
	Description *string  `json:"description,omitempty"`
	Name        *string  `json:"name,omitempty"`
	Type        *string  `json:"type,omitempty"`
	Size        *string  `json:"size,omitempty"`
	Date        *string  `json:"date,omitempty"`
	Parent      *string  `json:"parent,omitempty"`
	Mime        []string `json:"mime,omitempty"`
	Uri         *string  `json:"uri,omitempty"`
	Doctype     *string  `json:"doctype,omitempty"`
	Issuerid    *string  `json:"issuerid,omitempty"`
	Issuer      *string  `json:"issuer,omitempty"`
}

DigilockerIssuedFilesResponseDataInner struct for DigilockerIssuedFilesResponseDataInner

func NewDigilockerIssuedFilesResponseDataInner added in v1.0.1

func NewDigilockerIssuedFilesResponseDataInner() *DigilockerIssuedFilesResponseDataInner

NewDigilockerIssuedFilesResponseDataInner instantiates a new DigilockerIssuedFilesResponseDataInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerIssuedFilesResponseDataInnerWithDefaults added in v1.0.1

func NewDigilockerIssuedFilesResponseDataInnerWithDefaults() *DigilockerIssuedFilesResponseDataInner

NewDigilockerIssuedFilesResponseDataInnerWithDefaults instantiates a new DigilockerIssuedFilesResponseDataInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerIssuedFilesResponseDataInner) GetDate added in v1.0.1

GetDate returns the Date field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponseDataInner) GetDateOk added in v1.0.1

GetDateOk returns a tuple with the Date field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponseDataInner) GetDescription added in v1.0.1

func (o *DigilockerIssuedFilesResponseDataInner) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponseDataInner) GetDescriptionOk added in v1.0.1

func (o *DigilockerIssuedFilesResponseDataInner) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponseDataInner) GetDoctype added in v1.0.1

GetDoctype returns the Doctype field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponseDataInner) GetDoctypeOk added in v1.0.1

func (o *DigilockerIssuedFilesResponseDataInner) GetDoctypeOk() (*string, bool)

GetDoctypeOk returns a tuple with the Doctype field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponseDataInner) GetIssuer added in v1.0.1

GetIssuer returns the Issuer field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponseDataInner) GetIssuerOk added in v1.0.1

func (o *DigilockerIssuedFilesResponseDataInner) GetIssuerOk() (*string, bool)

GetIssuerOk returns a tuple with the Issuer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponseDataInner) GetIssuerid added in v1.0.1

GetIssuerid returns the Issuerid field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponseDataInner) GetIssueridOk added in v1.0.1

func (o *DigilockerIssuedFilesResponseDataInner) GetIssueridOk() (*string, bool)

GetIssueridOk returns a tuple with the Issuerid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponseDataInner) GetMime added in v1.0.1

GetMime returns the Mime field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponseDataInner) GetMimeOk added in v1.0.1

GetMimeOk returns a tuple with the Mime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponseDataInner) GetName added in v1.0.1

GetName returns the Name field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponseDataInner) GetNameOk added in v1.0.1

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponseDataInner) GetParent added in v1.0.1

GetParent returns the Parent field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponseDataInner) GetParentOk added in v1.0.1

func (o *DigilockerIssuedFilesResponseDataInner) GetParentOk() (*string, bool)

GetParentOk returns a tuple with the Parent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponseDataInner) GetSize added in v1.0.1

GetSize returns the Size field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponseDataInner) GetSizeOk added in v1.0.1

GetSizeOk returns a tuple with the Size field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponseDataInner) GetType added in v1.0.1

GetType returns the Type field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponseDataInner) GetTypeOk added in v1.0.1

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponseDataInner) GetUri added in v1.0.1

GetUri returns the Uri field value if set, zero value otherwise.

func (*DigilockerIssuedFilesResponseDataInner) GetUriOk added in v1.0.1

GetUriOk returns a tuple with the Uri field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerIssuedFilesResponseDataInner) HasDate added in v1.0.1

HasDate returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponseDataInner) HasDescription added in v1.0.1

func (o *DigilockerIssuedFilesResponseDataInner) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponseDataInner) HasDoctype added in v1.0.1

HasDoctype returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponseDataInner) HasIssuer added in v1.0.1

HasIssuer returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponseDataInner) HasIssuerid added in v1.0.1

HasIssuerid returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponseDataInner) HasMime added in v1.0.1

HasMime returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponseDataInner) HasName added in v1.0.1

HasName returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponseDataInner) HasParent added in v1.0.1

HasParent returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponseDataInner) HasSize added in v1.0.1

HasSize returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponseDataInner) HasType added in v1.0.1

HasType returns a boolean if a field has been set.

func (*DigilockerIssuedFilesResponseDataInner) HasUri added in v1.0.1

HasUri returns a boolean if a field has been set.

func (DigilockerIssuedFilesResponseDataInner) MarshalJSON added in v1.0.1

func (o DigilockerIssuedFilesResponseDataInner) MarshalJSON() ([]byte, error)

func (*DigilockerIssuedFilesResponseDataInner) SetDate added in v1.0.1

SetDate gets a reference to the given string and assigns it to the Date field.

func (*DigilockerIssuedFilesResponseDataInner) SetDescription added in v1.0.1

func (o *DigilockerIssuedFilesResponseDataInner) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*DigilockerIssuedFilesResponseDataInner) SetDoctype added in v1.0.1

SetDoctype gets a reference to the given string and assigns it to the Doctype field.

func (*DigilockerIssuedFilesResponseDataInner) SetIssuer added in v1.0.1

SetIssuer gets a reference to the given string and assigns it to the Issuer field.

func (*DigilockerIssuedFilesResponseDataInner) SetIssuerid added in v1.0.1

SetIssuerid gets a reference to the given string and assigns it to the Issuerid field.

func (*DigilockerIssuedFilesResponseDataInner) SetMime added in v1.0.1

SetMime gets a reference to the given []string and assigns it to the Mime field.

func (*DigilockerIssuedFilesResponseDataInner) SetName added in v1.0.1

SetName gets a reference to the given string and assigns it to the Name field.

func (*DigilockerIssuedFilesResponseDataInner) SetParent added in v1.0.1

SetParent gets a reference to the given string and assigns it to the Parent field.

func (*DigilockerIssuedFilesResponseDataInner) SetSize added in v1.0.1

SetSize gets a reference to the given string and assigns it to the Size field.

func (*DigilockerIssuedFilesResponseDataInner) SetType added in v1.0.1

SetType gets a reference to the given string and assigns it to the Type field.

func (*DigilockerIssuedFilesResponseDataInner) SetUri added in v1.0.1

SetUri gets a reference to the given string and assigns it to the Uri field.

type DigilockerPullFile400Response added in v1.0.1

type DigilockerPullFile400Response struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Message       *string `json:"message,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	ResponseKey   *string `json:"responseKey,omitempty"`
	Status        *string `json:"status,omitempty"`
}

DigilockerPullFile400Response struct for DigilockerPullFile400Response

func NewDigilockerPullFile400Response added in v1.0.1

func NewDigilockerPullFile400Response() *DigilockerPullFile400Response

NewDigilockerPullFile400Response instantiates a new DigilockerPullFile400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerPullFile400ResponseWithDefaults added in v1.0.1

func NewDigilockerPullFile400ResponseWithDefaults() *DigilockerPullFile400Response

NewDigilockerPullFile400ResponseWithDefaults instantiates a new DigilockerPullFile400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerPullFile400Response) GetDecentroTxnId added in v1.0.1

func (o *DigilockerPullFile400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerPullFile400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerPullFile400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFile400Response) GetMessage added in v1.0.1

func (o *DigilockerPullFile400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerPullFile400Response) GetMessageOk added in v1.0.1

func (o *DigilockerPullFile400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFile400Response) GetResponseCode added in v1.0.1

func (o *DigilockerPullFile400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerPullFile400Response) GetResponseCodeOk added in v1.0.1

func (o *DigilockerPullFile400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFile400Response) GetResponseKey added in v1.0.1

func (o *DigilockerPullFile400Response) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerPullFile400Response) GetResponseKeyOk added in v1.0.1

func (o *DigilockerPullFile400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFile400Response) GetStatus added in v1.0.1

func (o *DigilockerPullFile400Response) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerPullFile400Response) GetStatusOk added in v1.0.1

func (o *DigilockerPullFile400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFile400Response) HasDecentroTxnId added in v1.0.1

func (o *DigilockerPullFile400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerPullFile400Response) HasMessage added in v1.0.1

func (o *DigilockerPullFile400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DigilockerPullFile400Response) HasResponseCode added in v1.0.1

func (o *DigilockerPullFile400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerPullFile400Response) HasResponseKey added in v1.0.1

func (o *DigilockerPullFile400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerPullFile400Response) HasStatus added in v1.0.1

func (o *DigilockerPullFile400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DigilockerPullFile400Response) MarshalJSON added in v1.0.1

func (o DigilockerPullFile400Response) MarshalJSON() ([]byte, error)

func (*DigilockerPullFile400Response) SetDecentroTxnId added in v1.0.1

func (o *DigilockerPullFile400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerPullFile400Response) SetMessage added in v1.0.1

func (o *DigilockerPullFile400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerPullFile400Response) SetResponseCode added in v1.0.1

func (o *DigilockerPullFile400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerPullFile400Response) SetResponseKey added in v1.0.1

func (o *DigilockerPullFile400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerPullFile400Response) SetStatus added in v1.0.1

func (o *DigilockerPullFile400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerPullFileRequest

type DigilockerPullFileRequest struct {
	Consent                       *bool                                                   `json:"consent,omitempty"`
	Purpose                       *string                                                 `json:"purpose,omitempty"`
	ReferenceId                   *string                                                 `json:"reference_id,omitempty"`
	DocumentType                  *string                                                 `json:"document_type,omitempty"`
	DocumentTypeRelatedParameters *DigilockerPullFileRequestDocumentTypeRelatedParameters `json:"document_type_related_parameters,omitempty"`
}

DigilockerPullFileRequest struct for DigilockerPullFileRequest

func NewDigilockerPullFileRequest

func NewDigilockerPullFileRequest() *DigilockerPullFileRequest

NewDigilockerPullFileRequest instantiates a new DigilockerPullFileRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerPullFileRequestWithDefaults

func NewDigilockerPullFileRequestWithDefaults() *DigilockerPullFileRequest

NewDigilockerPullFileRequestWithDefaults instantiates a new DigilockerPullFileRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerPullFileRequest) GetConsent

func (o *DigilockerPullFileRequest) GetConsent() bool

GetConsent returns the Consent field value if set, zero value otherwise.

func (*DigilockerPullFileRequest) GetConsentOk

func (o *DigilockerPullFileRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFileRequest) GetDocumentType

func (o *DigilockerPullFileRequest) GetDocumentType() string

GetDocumentType returns the DocumentType field value if set, zero value otherwise.

func (*DigilockerPullFileRequest) GetDocumentTypeOk

func (o *DigilockerPullFileRequest) GetDocumentTypeOk() (*string, bool)

GetDocumentTypeOk returns a tuple with the DocumentType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFileRequest) GetDocumentTypeRelatedParameters

GetDocumentTypeRelatedParameters returns the DocumentTypeRelatedParameters field value if set, zero value otherwise.

func (*DigilockerPullFileRequest) GetDocumentTypeRelatedParametersOk

GetDocumentTypeRelatedParametersOk returns a tuple with the DocumentTypeRelatedParameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFileRequest) GetPurpose

func (o *DigilockerPullFileRequest) GetPurpose() string

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*DigilockerPullFileRequest) GetPurposeOk

func (o *DigilockerPullFileRequest) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFileRequest) GetReferenceId

func (o *DigilockerPullFileRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*DigilockerPullFileRequest) GetReferenceIdOk

func (o *DigilockerPullFileRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFileRequest) HasConsent

func (o *DigilockerPullFileRequest) HasConsent() bool

HasConsent returns a boolean if a field has been set.

func (*DigilockerPullFileRequest) HasDocumentType

func (o *DigilockerPullFileRequest) HasDocumentType() bool

HasDocumentType returns a boolean if a field has been set.

func (*DigilockerPullFileRequest) HasDocumentTypeRelatedParameters

func (o *DigilockerPullFileRequest) HasDocumentTypeRelatedParameters() bool

HasDocumentTypeRelatedParameters returns a boolean if a field has been set.

func (*DigilockerPullFileRequest) HasPurpose

func (o *DigilockerPullFileRequest) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (*DigilockerPullFileRequest) HasReferenceId

func (o *DigilockerPullFileRequest) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (DigilockerPullFileRequest) MarshalJSON

func (o DigilockerPullFileRequest) MarshalJSON() ([]byte, error)

func (*DigilockerPullFileRequest) SetConsent

func (o *DigilockerPullFileRequest) SetConsent(v bool)

SetConsent gets a reference to the given bool and assigns it to the Consent field.

func (*DigilockerPullFileRequest) SetDocumentType

func (o *DigilockerPullFileRequest) SetDocumentType(v string)

SetDocumentType gets a reference to the given string and assigns it to the DocumentType field.

func (*DigilockerPullFileRequest) SetDocumentTypeRelatedParameters

SetDocumentTypeRelatedParameters gets a reference to the given DigilockerPullFileRequestDocumentTypeRelatedParameters and assigns it to the DocumentTypeRelatedParameters field.

func (*DigilockerPullFileRequest) SetPurpose

func (o *DigilockerPullFileRequest) SetPurpose(v string)

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*DigilockerPullFileRequest) SetReferenceId

func (o *DigilockerPullFileRequest) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

type DigilockerPullFileRequestDocumentTypeRelatedParameters

type DigilockerPullFileRequestDocumentTypeRelatedParameters struct {
	IdNumber *string `json:"id_number,omitempty"`
	FullName *string `json:"full_name,omitempty"`
}

DigilockerPullFileRequestDocumentTypeRelatedParameters struct for DigilockerPullFileRequestDocumentTypeRelatedParameters

func NewDigilockerPullFileRequestDocumentTypeRelatedParameters

func NewDigilockerPullFileRequestDocumentTypeRelatedParameters() *DigilockerPullFileRequestDocumentTypeRelatedParameters

NewDigilockerPullFileRequestDocumentTypeRelatedParameters instantiates a new DigilockerPullFileRequestDocumentTypeRelatedParameters object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerPullFileRequestDocumentTypeRelatedParametersWithDefaults

func NewDigilockerPullFileRequestDocumentTypeRelatedParametersWithDefaults() *DigilockerPullFileRequestDocumentTypeRelatedParameters

NewDigilockerPullFileRequestDocumentTypeRelatedParametersWithDefaults instantiates a new DigilockerPullFileRequestDocumentTypeRelatedParameters object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerPullFileRequestDocumentTypeRelatedParameters) GetFullName

GetFullName returns the FullName field value if set, zero value otherwise.

func (*DigilockerPullFileRequestDocumentTypeRelatedParameters) GetFullNameOk

GetFullNameOk returns a tuple with the FullName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFileRequestDocumentTypeRelatedParameters) GetIdNumber

GetIdNumber returns the IdNumber field value if set, zero value otherwise.

func (*DigilockerPullFileRequestDocumentTypeRelatedParameters) GetIdNumberOk

GetIdNumberOk returns a tuple with the IdNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFileRequestDocumentTypeRelatedParameters) HasFullName

HasFullName returns a boolean if a field has been set.

func (*DigilockerPullFileRequestDocumentTypeRelatedParameters) HasIdNumber

HasIdNumber returns a boolean if a field has been set.

func (DigilockerPullFileRequestDocumentTypeRelatedParameters) MarshalJSON

func (*DigilockerPullFileRequestDocumentTypeRelatedParameters) SetFullName

SetFullName gets a reference to the given string and assigns it to the FullName field.

func (*DigilockerPullFileRequestDocumentTypeRelatedParameters) SetIdNumber

SetIdNumber gets a reference to the given string and assigns it to the IdNumber field.

type DigilockerPullFileResponse added in v1.0.1

type DigilockerPullFileResponse struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Status        *string `json:"status,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	Message       *string `json:"message,omitempty"`
	ResponseKey   *string `json:"responseKey,omitempty"`
}

DigilockerPullFileResponse struct for DigilockerPullFileResponse

func NewDigilockerPullFileResponse added in v1.0.1

func NewDigilockerPullFileResponse() *DigilockerPullFileResponse

NewDigilockerPullFileResponse instantiates a new DigilockerPullFileResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerPullFileResponseWithDefaults added in v1.0.1

func NewDigilockerPullFileResponseWithDefaults() *DigilockerPullFileResponse

NewDigilockerPullFileResponseWithDefaults instantiates a new DigilockerPullFileResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerPullFileResponse) GetDecentroTxnId added in v1.0.1

func (o *DigilockerPullFileResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerPullFileResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerPullFileResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFileResponse) GetMessage added in v1.0.1

func (o *DigilockerPullFileResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerPullFileResponse) GetMessageOk added in v1.0.1

func (o *DigilockerPullFileResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFileResponse) GetResponseCode added in v1.0.1

func (o *DigilockerPullFileResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerPullFileResponse) GetResponseCodeOk added in v1.0.1

func (o *DigilockerPullFileResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFileResponse) GetResponseKey added in v1.0.1

func (o *DigilockerPullFileResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerPullFileResponse) GetResponseKeyOk added in v1.0.1

func (o *DigilockerPullFileResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFileResponse) GetStatus added in v1.0.1

func (o *DigilockerPullFileResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerPullFileResponse) GetStatusOk added in v1.0.1

func (o *DigilockerPullFileResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerPullFileResponse) HasDecentroTxnId added in v1.0.1

func (o *DigilockerPullFileResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerPullFileResponse) HasMessage added in v1.0.1

func (o *DigilockerPullFileResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DigilockerPullFileResponse) HasResponseCode added in v1.0.1

func (o *DigilockerPullFileResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerPullFileResponse) HasResponseKey added in v1.0.1

func (o *DigilockerPullFileResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerPullFileResponse) HasStatus added in v1.0.1

func (o *DigilockerPullFileResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DigilockerPullFileResponse) MarshalJSON added in v1.0.1

func (o DigilockerPullFileResponse) MarshalJSON() ([]byte, error)

func (*DigilockerPullFileResponse) SetDecentroTxnId added in v1.0.1

func (o *DigilockerPullFileResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerPullFileResponse) SetMessage added in v1.0.1

func (o *DigilockerPullFileResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerPullFileResponse) SetResponseCode added in v1.0.1

func (o *DigilockerPullFileResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerPullFileResponse) SetResponseKey added in v1.0.1

func (o *DigilockerPullFileResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerPullFileResponse) SetStatus added in v1.0.1

func (o *DigilockerPullFileResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerRevokeToken400Response added in v1.0.1

type DigilockerRevokeToken400Response struct {
	Data          *DigilockerRevokeToken400ResponseData `json:"data,omitempty"`
	DecentroTxnId *string                               `json:"decentroTxnId,omitempty"`
	Message       *string                               `json:"message,omitempty"`
	ResponseCode  *string                               `json:"responseCode,omitempty"`
	ResponseKey   *string                               `json:"responseKey,omitempty"`
	Status        *string                               `json:"status,omitempty"`
}

DigilockerRevokeToken400Response struct for DigilockerRevokeToken400Response

func NewDigilockerRevokeToken400Response added in v1.0.1

func NewDigilockerRevokeToken400Response() *DigilockerRevokeToken400Response

NewDigilockerRevokeToken400Response instantiates a new DigilockerRevokeToken400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerRevokeToken400ResponseWithDefaults added in v1.0.1

func NewDigilockerRevokeToken400ResponseWithDefaults() *DigilockerRevokeToken400Response

NewDigilockerRevokeToken400ResponseWithDefaults instantiates a new DigilockerRevokeToken400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerRevokeToken400Response) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*DigilockerRevokeToken400Response) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeToken400Response) GetDecentroTxnId added in v1.0.1

func (o *DigilockerRevokeToken400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerRevokeToken400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerRevokeToken400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeToken400Response) GetMessage added in v1.0.1

func (o *DigilockerRevokeToken400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerRevokeToken400Response) GetMessageOk added in v1.0.1

func (o *DigilockerRevokeToken400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeToken400Response) GetResponseCode added in v1.0.1

func (o *DigilockerRevokeToken400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerRevokeToken400Response) GetResponseCodeOk added in v1.0.1

func (o *DigilockerRevokeToken400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeToken400Response) GetResponseKey added in v1.0.1

func (o *DigilockerRevokeToken400Response) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerRevokeToken400Response) GetResponseKeyOk added in v1.0.1

func (o *DigilockerRevokeToken400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeToken400Response) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerRevokeToken400Response) GetStatusOk added in v1.0.1

func (o *DigilockerRevokeToken400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeToken400Response) HasData added in v1.0.1

HasData returns a boolean if a field has been set.

func (*DigilockerRevokeToken400Response) HasDecentroTxnId added in v1.0.1

func (o *DigilockerRevokeToken400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerRevokeToken400Response) HasMessage added in v1.0.1

func (o *DigilockerRevokeToken400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DigilockerRevokeToken400Response) HasResponseCode added in v1.0.1

func (o *DigilockerRevokeToken400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerRevokeToken400Response) HasResponseKey added in v1.0.1

func (o *DigilockerRevokeToken400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerRevokeToken400Response) HasStatus added in v1.0.1

func (o *DigilockerRevokeToken400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DigilockerRevokeToken400Response) MarshalJSON added in v1.0.1

func (o DigilockerRevokeToken400Response) MarshalJSON() ([]byte, error)

func (*DigilockerRevokeToken400Response) SetData added in v1.0.1

SetData gets a reference to the given DigilockerRevokeToken400ResponseData and assigns it to the Data field.

func (*DigilockerRevokeToken400Response) SetDecentroTxnId added in v1.0.1

func (o *DigilockerRevokeToken400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerRevokeToken400Response) SetMessage added in v1.0.1

func (o *DigilockerRevokeToken400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerRevokeToken400Response) SetResponseCode added in v1.0.1

func (o *DigilockerRevokeToken400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerRevokeToken400Response) SetResponseKey added in v1.0.1

func (o *DigilockerRevokeToken400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerRevokeToken400Response) SetStatus added in v1.0.1

func (o *DigilockerRevokeToken400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerRevokeToken400ResponseData added in v1.0.1

type DigilockerRevokeToken400ResponseData struct {
	Revoked *bool `json:"revoked,omitempty"`
}

DigilockerRevokeToken400ResponseData struct for DigilockerRevokeToken400ResponseData

func NewDigilockerRevokeToken400ResponseData added in v1.0.1

func NewDigilockerRevokeToken400ResponseData() *DigilockerRevokeToken400ResponseData

NewDigilockerRevokeToken400ResponseData instantiates a new DigilockerRevokeToken400ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerRevokeToken400ResponseDataWithDefaults added in v1.0.1

func NewDigilockerRevokeToken400ResponseDataWithDefaults() *DigilockerRevokeToken400ResponseData

NewDigilockerRevokeToken400ResponseDataWithDefaults instantiates a new DigilockerRevokeToken400ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerRevokeToken400ResponseData) GetRevoked added in v1.0.1

GetRevoked returns the Revoked field value if set, zero value otherwise.

func (*DigilockerRevokeToken400ResponseData) GetRevokedOk added in v1.0.1

func (o *DigilockerRevokeToken400ResponseData) GetRevokedOk() (*bool, bool)

GetRevokedOk returns a tuple with the Revoked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeToken400ResponseData) HasRevoked added in v1.0.1

HasRevoked returns a boolean if a field has been set.

func (DigilockerRevokeToken400ResponseData) MarshalJSON added in v1.0.1

func (o DigilockerRevokeToken400ResponseData) MarshalJSON() ([]byte, error)

func (*DigilockerRevokeToken400ResponseData) SetRevoked added in v1.0.1

func (o *DigilockerRevokeToken400ResponseData) SetRevoked(v bool)

SetRevoked gets a reference to the given bool and assigns it to the Revoked field.

type DigilockerRevokeTokenResponse added in v1.0.1

type DigilockerRevokeTokenResponse struct {
	DecentroTxnId *string                            `json:"decentroTxnId,omitempty"`
	Status        *string                            `json:"status,omitempty"`
	ResponseCode  *string                            `json:"responseCode,omitempty"`
	Message       *string                            `json:"message,omitempty"`
	Data          *DigilockerRevokeTokenResponseData `json:"data,omitempty"`
	ResponseKey   *string                            `json:"responseKey,omitempty"`
}

DigilockerRevokeTokenResponse struct for DigilockerRevokeTokenResponse

func NewDigilockerRevokeTokenResponse added in v1.0.1

func NewDigilockerRevokeTokenResponse() *DigilockerRevokeTokenResponse

NewDigilockerRevokeTokenResponse instantiates a new DigilockerRevokeTokenResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerRevokeTokenResponseWithDefaults added in v1.0.1

func NewDigilockerRevokeTokenResponseWithDefaults() *DigilockerRevokeTokenResponse

NewDigilockerRevokeTokenResponseWithDefaults instantiates a new DigilockerRevokeTokenResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerRevokeTokenResponse) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*DigilockerRevokeTokenResponse) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeTokenResponse) GetDecentroTxnId added in v1.0.1

func (o *DigilockerRevokeTokenResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*DigilockerRevokeTokenResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *DigilockerRevokeTokenResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeTokenResponse) GetMessage added in v1.0.1

func (o *DigilockerRevokeTokenResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*DigilockerRevokeTokenResponse) GetMessageOk added in v1.0.1

func (o *DigilockerRevokeTokenResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeTokenResponse) GetResponseCode added in v1.0.1

func (o *DigilockerRevokeTokenResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*DigilockerRevokeTokenResponse) GetResponseCodeOk added in v1.0.1

func (o *DigilockerRevokeTokenResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeTokenResponse) GetResponseKey added in v1.0.1

func (o *DigilockerRevokeTokenResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*DigilockerRevokeTokenResponse) GetResponseKeyOk added in v1.0.1

func (o *DigilockerRevokeTokenResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeTokenResponse) GetStatus added in v1.0.1

func (o *DigilockerRevokeTokenResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*DigilockerRevokeTokenResponse) GetStatusOk added in v1.0.1

func (o *DigilockerRevokeTokenResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeTokenResponse) HasData added in v1.0.1

func (o *DigilockerRevokeTokenResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*DigilockerRevokeTokenResponse) HasDecentroTxnId added in v1.0.1

func (o *DigilockerRevokeTokenResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*DigilockerRevokeTokenResponse) HasMessage added in v1.0.1

func (o *DigilockerRevokeTokenResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DigilockerRevokeTokenResponse) HasResponseCode added in v1.0.1

func (o *DigilockerRevokeTokenResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*DigilockerRevokeTokenResponse) HasResponseKey added in v1.0.1

func (o *DigilockerRevokeTokenResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*DigilockerRevokeTokenResponse) HasStatus added in v1.0.1

func (o *DigilockerRevokeTokenResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DigilockerRevokeTokenResponse) MarshalJSON added in v1.0.1

func (o DigilockerRevokeTokenResponse) MarshalJSON() ([]byte, error)

func (*DigilockerRevokeTokenResponse) SetData added in v1.0.1

SetData gets a reference to the given DigilockerRevokeTokenResponseData and assigns it to the Data field.

func (*DigilockerRevokeTokenResponse) SetDecentroTxnId added in v1.0.1

func (o *DigilockerRevokeTokenResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*DigilockerRevokeTokenResponse) SetMessage added in v1.0.1

func (o *DigilockerRevokeTokenResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*DigilockerRevokeTokenResponse) SetResponseCode added in v1.0.1

func (o *DigilockerRevokeTokenResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*DigilockerRevokeTokenResponse) SetResponseKey added in v1.0.1

func (o *DigilockerRevokeTokenResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*DigilockerRevokeTokenResponse) SetStatus added in v1.0.1

func (o *DigilockerRevokeTokenResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type DigilockerRevokeTokenResponseData added in v1.0.1

type DigilockerRevokeTokenResponseData struct {
	Revoked *bool `json:"revoked,omitempty"`
}

DigilockerRevokeTokenResponseData struct for DigilockerRevokeTokenResponseData

func NewDigilockerRevokeTokenResponseData added in v1.0.1

func NewDigilockerRevokeTokenResponseData() *DigilockerRevokeTokenResponseData

NewDigilockerRevokeTokenResponseData instantiates a new DigilockerRevokeTokenResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDigilockerRevokeTokenResponseDataWithDefaults added in v1.0.1

func NewDigilockerRevokeTokenResponseDataWithDefaults() *DigilockerRevokeTokenResponseData

NewDigilockerRevokeTokenResponseDataWithDefaults instantiates a new DigilockerRevokeTokenResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DigilockerRevokeTokenResponseData) GetRevoked added in v1.0.1

func (o *DigilockerRevokeTokenResponseData) GetRevoked() bool

GetRevoked returns the Revoked field value if set, zero value otherwise.

func (*DigilockerRevokeTokenResponseData) GetRevokedOk added in v1.0.1

func (o *DigilockerRevokeTokenResponseData) GetRevokedOk() (*bool, bool)

GetRevokedOk returns a tuple with the Revoked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DigilockerRevokeTokenResponseData) HasRevoked added in v1.0.1

func (o *DigilockerRevokeTokenResponseData) HasRevoked() bool

HasRevoked returns a boolean if a field has been set.

func (DigilockerRevokeTokenResponseData) MarshalJSON added in v1.0.1

func (o DigilockerRevokeTokenResponseData) MarshalJSON() ([]byte, error)

func (*DigilockerRevokeTokenResponseData) SetRevoked added in v1.0.1

func (o *DigilockerRevokeTokenResponseData) SetRevoked(v bool)

SetRevoked gets a reference to the given bool and assigns it to the Revoked field.

type ExtractText400Response

type ExtractText400Response struct {
	Status            *string                      `json:"status,omitempty"`
	OcrStatus         *string                      `json:"ocrStatus,omitempty"`
	KycStatus         *string                      `json:"kycStatus,omitempty"`
	Error             *ExtractText400ResponseError `json:"error,omitempty"`
	RequestTimestamp  *string                      `json:"requestTimestamp,omitempty"`
	ResponseTimestamp *string                      `json:"responseTimestamp,omitempty"`
	DecentroTxnId     *string                      `json:"decentroTxnId,omitempty"`
}

ExtractText400Response struct for ExtractText400Response

func NewExtractText400Response

func NewExtractText400Response() *ExtractText400Response

NewExtractText400Response instantiates a new ExtractText400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExtractText400ResponseWithDefaults

func NewExtractText400ResponseWithDefaults() *ExtractText400Response

NewExtractText400ResponseWithDefaults instantiates a new ExtractText400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExtractText400Response) GetDecentroTxnId

func (o *ExtractText400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*ExtractText400Response) GetDecentroTxnIdOk

func (o *ExtractText400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractText400Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ExtractText400Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractText400Response) GetKycStatus

func (o *ExtractText400Response) GetKycStatus() string

GetKycStatus returns the KycStatus field value if set, zero value otherwise.

func (*ExtractText400Response) GetKycStatusOk

func (o *ExtractText400Response) GetKycStatusOk() (*string, bool)

GetKycStatusOk returns a tuple with the KycStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractText400Response) GetOcrStatus

func (o *ExtractText400Response) GetOcrStatus() string

GetOcrStatus returns the OcrStatus field value if set, zero value otherwise.

func (*ExtractText400Response) GetOcrStatusOk

func (o *ExtractText400Response) GetOcrStatusOk() (*string, bool)

GetOcrStatusOk returns a tuple with the OcrStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractText400Response) GetRequestTimestamp

func (o *ExtractText400Response) GetRequestTimestamp() string

GetRequestTimestamp returns the RequestTimestamp field value if set, zero value otherwise.

func (*ExtractText400Response) GetRequestTimestampOk

func (o *ExtractText400Response) GetRequestTimestampOk() (*string, bool)

GetRequestTimestampOk returns a tuple with the RequestTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractText400Response) GetResponseTimestamp

func (o *ExtractText400Response) GetResponseTimestamp() string

GetResponseTimestamp returns the ResponseTimestamp field value if set, zero value otherwise.

func (*ExtractText400Response) GetResponseTimestampOk

func (o *ExtractText400Response) GetResponseTimestampOk() (*string, bool)

GetResponseTimestampOk returns a tuple with the ResponseTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractText400Response) GetStatus

func (o *ExtractText400Response) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*ExtractText400Response) GetStatusOk

func (o *ExtractText400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractText400Response) HasDecentroTxnId

func (o *ExtractText400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*ExtractText400Response) HasError

func (o *ExtractText400Response) HasError() bool

HasError returns a boolean if a field has been set.

func (*ExtractText400Response) HasKycStatus

func (o *ExtractText400Response) HasKycStatus() bool

HasKycStatus returns a boolean if a field has been set.

func (*ExtractText400Response) HasOcrStatus

func (o *ExtractText400Response) HasOcrStatus() bool

HasOcrStatus returns a boolean if a field has been set.

func (*ExtractText400Response) HasRequestTimestamp

func (o *ExtractText400Response) HasRequestTimestamp() bool

HasRequestTimestamp returns a boolean if a field has been set.

func (*ExtractText400Response) HasResponseTimestamp

func (o *ExtractText400Response) HasResponseTimestamp() bool

HasResponseTimestamp returns a boolean if a field has been set.

func (*ExtractText400Response) HasStatus

func (o *ExtractText400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ExtractText400Response) MarshalJSON

func (o ExtractText400Response) MarshalJSON() ([]byte, error)

func (*ExtractText400Response) SetDecentroTxnId

func (o *ExtractText400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*ExtractText400Response) SetError

SetError gets a reference to the given ExtractText400ResponseError and assigns it to the Error field.

func (*ExtractText400Response) SetKycStatus

func (o *ExtractText400Response) SetKycStatus(v string)

SetKycStatus gets a reference to the given string and assigns it to the KycStatus field.

func (*ExtractText400Response) SetOcrStatus

func (o *ExtractText400Response) SetOcrStatus(v string)

SetOcrStatus gets a reference to the given string and assigns it to the OcrStatus field.

func (*ExtractText400Response) SetRequestTimestamp

func (o *ExtractText400Response) SetRequestTimestamp(v string)

SetRequestTimestamp gets a reference to the given string and assigns it to the RequestTimestamp field.

func (*ExtractText400Response) SetResponseTimestamp

func (o *ExtractText400Response) SetResponseTimestamp(v string)

SetResponseTimestamp gets a reference to the given string and assigns it to the ResponseTimestamp field.

func (*ExtractText400Response) SetStatus

func (o *ExtractText400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type ExtractText400ResponseError

type ExtractText400ResponseError struct {
	Message      *string `json:"message,omitempty"`
	ResponseCode *string `json:"responseCode,omitempty"`
}

ExtractText400ResponseError struct for ExtractText400ResponseError

func NewExtractText400ResponseError

func NewExtractText400ResponseError() *ExtractText400ResponseError

NewExtractText400ResponseError instantiates a new ExtractText400ResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExtractText400ResponseErrorWithDefaults

func NewExtractText400ResponseErrorWithDefaults() *ExtractText400ResponseError

NewExtractText400ResponseErrorWithDefaults instantiates a new ExtractText400ResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExtractText400ResponseError) GetMessage

func (o *ExtractText400ResponseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ExtractText400ResponseError) GetMessageOk

func (o *ExtractText400ResponseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractText400ResponseError) GetResponseCode

func (o *ExtractText400ResponseError) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*ExtractText400ResponseError) GetResponseCodeOk

func (o *ExtractText400ResponseError) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractText400ResponseError) HasMessage

func (o *ExtractText400ResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ExtractText400ResponseError) HasResponseCode

func (o *ExtractText400ResponseError) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (ExtractText400ResponseError) MarshalJSON

func (o ExtractText400ResponseError) MarshalJSON() ([]byte, error)

func (*ExtractText400ResponseError) SetMessage

func (o *ExtractText400ResponseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ExtractText400ResponseError) SetResponseCode

func (o *ExtractText400ResponseError) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

type ExtractTextRequest

type ExtractTextRequest struct {
	//
	ReferenceId string `json:"reference_id"`
	//
	DocumentType string `json:"document_type"`
	//
	Consent string `json:"consent"`
	//
	ConsentPurpose string `json:"consent_purpose"`
	//
	KycValidate     int32     `json:"kyc_validate"`
	Document        **os.File `json:"document,omitempty"`
	DocumentUrl     *string   `json:"document_url,omitempty"`
	DocumentBack    **os.File `json:"document_back,omitempty"`
	DocumentBackUrl *string   `json:"document_back_url,omitempty"`
}

ExtractTextRequest struct for ExtractTextRequest

func NewExtractTextRequest

func NewExtractTextRequest(referenceId string, documentType string, consent string, consentPurpose string, kycValidate int32) *ExtractTextRequest

NewExtractTextRequest instantiates a new ExtractTextRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExtractTextRequestWithDefaults

func NewExtractTextRequestWithDefaults() *ExtractTextRequest

NewExtractTextRequestWithDefaults instantiates a new ExtractTextRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExtractTextRequest) GetConsent

func (o *ExtractTextRequest) GetConsent() string

GetConsent returns the Consent field value

func (*ExtractTextRequest) GetConsentOk

func (o *ExtractTextRequest) GetConsentOk() (*string, bool)

GetConsentOk returns a tuple with the Consent field value and a boolean to check if the value has been set.

func (*ExtractTextRequest) GetConsentPurpose

func (o *ExtractTextRequest) GetConsentPurpose() string

GetConsentPurpose returns the ConsentPurpose field value

func (*ExtractTextRequest) GetConsentPurposeOk

func (o *ExtractTextRequest) GetConsentPurposeOk() (*string, bool)

GetConsentPurposeOk returns a tuple with the ConsentPurpose field value and a boolean to check if the value has been set.

func (*ExtractTextRequest) GetDocument

func (o *ExtractTextRequest) GetDocument() *os.File

GetDocument returns the Document field value if set, zero value otherwise.

func (*ExtractTextRequest) GetDocumentBack

func (o *ExtractTextRequest) GetDocumentBack() *os.File

GetDocumentBack returns the DocumentBack field value if set, zero value otherwise.

func (*ExtractTextRequest) GetDocumentBackOk

func (o *ExtractTextRequest) GetDocumentBackOk() (**os.File, bool)

GetDocumentBackOk returns a tuple with the DocumentBack field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextRequest) GetDocumentBackUrl

func (o *ExtractTextRequest) GetDocumentBackUrl() string

GetDocumentBackUrl returns the DocumentBackUrl field value if set, zero value otherwise.

func (*ExtractTextRequest) GetDocumentBackUrlOk

func (o *ExtractTextRequest) GetDocumentBackUrlOk() (*string, bool)

GetDocumentBackUrlOk returns a tuple with the DocumentBackUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextRequest) GetDocumentOk

func (o *ExtractTextRequest) GetDocumentOk() (**os.File, bool)

GetDocumentOk returns a tuple with the Document field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextRequest) GetDocumentType

func (o *ExtractTextRequest) GetDocumentType() string

GetDocumentType returns the DocumentType field value

func (*ExtractTextRequest) GetDocumentTypeOk

func (o *ExtractTextRequest) GetDocumentTypeOk() (*string, bool)

GetDocumentTypeOk returns a tuple with the DocumentType field value and a boolean to check if the value has been set.

func (*ExtractTextRequest) GetDocumentUrl

func (o *ExtractTextRequest) GetDocumentUrl() string

GetDocumentUrl returns the DocumentUrl field value if set, zero value otherwise.

func (*ExtractTextRequest) GetDocumentUrlOk

func (o *ExtractTextRequest) GetDocumentUrlOk() (*string, bool)

GetDocumentUrlOk returns a tuple with the DocumentUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextRequest) GetKycValidate

func (o *ExtractTextRequest) GetKycValidate() int32

GetKycValidate returns the KycValidate field value

func (*ExtractTextRequest) GetKycValidateOk

func (o *ExtractTextRequest) GetKycValidateOk() (*int32, bool)

GetKycValidateOk returns a tuple with the KycValidate field value and a boolean to check if the value has been set.

func (*ExtractTextRequest) GetReferenceId

func (o *ExtractTextRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value

func (*ExtractTextRequest) GetReferenceIdOk

func (o *ExtractTextRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value and a boolean to check if the value has been set.

func (*ExtractTextRequest) HasDocument

func (o *ExtractTextRequest) HasDocument() bool

HasDocument returns a boolean if a field has been set.

func (*ExtractTextRequest) HasDocumentBack

func (o *ExtractTextRequest) HasDocumentBack() bool

HasDocumentBack returns a boolean if a field has been set.

func (*ExtractTextRequest) HasDocumentBackUrl

func (o *ExtractTextRequest) HasDocumentBackUrl() bool

HasDocumentBackUrl returns a boolean if a field has been set.

func (*ExtractTextRequest) HasDocumentUrl

func (o *ExtractTextRequest) HasDocumentUrl() bool

HasDocumentUrl returns a boolean if a field has been set.

func (ExtractTextRequest) MarshalJSON

func (o ExtractTextRequest) MarshalJSON() ([]byte, error)

func (*ExtractTextRequest) SetConsent

func (o *ExtractTextRequest) SetConsent(v string)

SetConsent sets field value

func (*ExtractTextRequest) SetConsentPurpose

func (o *ExtractTextRequest) SetConsentPurpose(v string)

SetConsentPurpose sets field value

func (*ExtractTextRequest) SetDocument

func (o *ExtractTextRequest) SetDocument(v *os.File)

SetDocument gets a reference to the given *os.File and assigns it to the Document field.

func (*ExtractTextRequest) SetDocumentBack

func (o *ExtractTextRequest) SetDocumentBack(v *os.File)

SetDocumentBack gets a reference to the given *os.File and assigns it to the DocumentBack field.

func (*ExtractTextRequest) SetDocumentBackUrl

func (o *ExtractTextRequest) SetDocumentBackUrl(v string)

SetDocumentBackUrl gets a reference to the given string and assigns it to the DocumentBackUrl field.

func (*ExtractTextRequest) SetDocumentType

func (o *ExtractTextRequest) SetDocumentType(v string)

SetDocumentType sets field value

func (*ExtractTextRequest) SetDocumentUrl

func (o *ExtractTextRequest) SetDocumentUrl(v string)

SetDocumentUrl gets a reference to the given string and assigns it to the DocumentUrl field.

func (*ExtractTextRequest) SetKycValidate

func (o *ExtractTextRequest) SetKycValidate(v int32)

SetKycValidate sets field value

func (*ExtractTextRequest) SetReferenceId

func (o *ExtractTextRequest) SetReferenceId(v string)

SetReferenceId sets field value

type ExtractTextResponse

type ExtractTextResponse struct {
	OcrStatus         *string                       `json:"ocrStatus,omitempty"`
	Status            *string                       `json:"status,omitempty"`
	Message           *string                       `json:"message,omitempty"`
	OcrResult         *ExtractTextResponseOcrResult `json:"ocrResult,omitempty"`
	ResponseCode      *string                       `json:"responseCode,omitempty"`
	RequestTimestamp  *string                       `json:"requestTimestamp,omitempty"`
	ResponseTimestamp *string                       `json:"responseTimestamp,omitempty"`
	DecentroTxnId     *string                       `json:"decentroTxnId,omitempty"`
}

ExtractTextResponse struct for ExtractTextResponse

func NewExtractTextResponse

func NewExtractTextResponse() *ExtractTextResponse

NewExtractTextResponse instantiates a new ExtractTextResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExtractTextResponseWithDefaults

func NewExtractTextResponseWithDefaults() *ExtractTextResponse

NewExtractTextResponseWithDefaults instantiates a new ExtractTextResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExtractTextResponse) GetDecentroTxnId

func (o *ExtractTextResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*ExtractTextResponse) GetDecentroTxnIdOk

func (o *ExtractTextResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponse) GetMessage

func (o *ExtractTextResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ExtractTextResponse) GetMessageOk

func (o *ExtractTextResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponse) GetOcrResult

GetOcrResult returns the OcrResult field value if set, zero value otherwise.

func (*ExtractTextResponse) GetOcrResultOk

func (o *ExtractTextResponse) GetOcrResultOk() (*ExtractTextResponseOcrResult, bool)

GetOcrResultOk returns a tuple with the OcrResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponse) GetOcrStatus

func (o *ExtractTextResponse) GetOcrStatus() string

GetOcrStatus returns the OcrStatus field value if set, zero value otherwise.

func (*ExtractTextResponse) GetOcrStatusOk

func (o *ExtractTextResponse) GetOcrStatusOk() (*string, bool)

GetOcrStatusOk returns a tuple with the OcrStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponse) GetRequestTimestamp

func (o *ExtractTextResponse) GetRequestTimestamp() string

GetRequestTimestamp returns the RequestTimestamp field value if set, zero value otherwise.

func (*ExtractTextResponse) GetRequestTimestampOk

func (o *ExtractTextResponse) GetRequestTimestampOk() (*string, bool)

GetRequestTimestampOk returns a tuple with the RequestTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponse) GetResponseCode

func (o *ExtractTextResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*ExtractTextResponse) GetResponseCodeOk

func (o *ExtractTextResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponse) GetResponseTimestamp

func (o *ExtractTextResponse) GetResponseTimestamp() string

GetResponseTimestamp returns the ResponseTimestamp field value if set, zero value otherwise.

func (*ExtractTextResponse) GetResponseTimestampOk

func (o *ExtractTextResponse) GetResponseTimestampOk() (*string, bool)

GetResponseTimestampOk returns a tuple with the ResponseTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponse) GetStatus

func (o *ExtractTextResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*ExtractTextResponse) GetStatusOk

func (o *ExtractTextResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponse) HasDecentroTxnId

func (o *ExtractTextResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*ExtractTextResponse) HasMessage

func (o *ExtractTextResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ExtractTextResponse) HasOcrResult

func (o *ExtractTextResponse) HasOcrResult() bool

HasOcrResult returns a boolean if a field has been set.

func (*ExtractTextResponse) HasOcrStatus

func (o *ExtractTextResponse) HasOcrStatus() bool

HasOcrStatus returns a boolean if a field has been set.

func (*ExtractTextResponse) HasRequestTimestamp

func (o *ExtractTextResponse) HasRequestTimestamp() bool

HasRequestTimestamp returns a boolean if a field has been set.

func (*ExtractTextResponse) HasResponseCode

func (o *ExtractTextResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*ExtractTextResponse) HasResponseTimestamp

func (o *ExtractTextResponse) HasResponseTimestamp() bool

HasResponseTimestamp returns a boolean if a field has been set.

func (*ExtractTextResponse) HasStatus

func (o *ExtractTextResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ExtractTextResponse) MarshalJSON

func (o ExtractTextResponse) MarshalJSON() ([]byte, error)

func (*ExtractTextResponse) SetDecentroTxnId

func (o *ExtractTextResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*ExtractTextResponse) SetMessage

func (o *ExtractTextResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ExtractTextResponse) SetOcrResult

SetOcrResult gets a reference to the given ExtractTextResponseOcrResult and assigns it to the OcrResult field.

func (*ExtractTextResponse) SetOcrStatus

func (o *ExtractTextResponse) SetOcrStatus(v string)

SetOcrStatus gets a reference to the given string and assigns it to the OcrStatus field.

func (*ExtractTextResponse) SetRequestTimestamp

func (o *ExtractTextResponse) SetRequestTimestamp(v string)

SetRequestTimestamp gets a reference to the given string and assigns it to the RequestTimestamp field.

func (*ExtractTextResponse) SetResponseCode

func (o *ExtractTextResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*ExtractTextResponse) SetResponseTimestamp

func (o *ExtractTextResponse) SetResponseTimestamp(v string)

SetResponseTimestamp gets a reference to the given string and assigns it to the ResponseTimestamp field.

func (*ExtractTextResponse) SetStatus

func (o *ExtractTextResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type ExtractTextResponseOcrResult

type ExtractTextResponseOcrResult struct {
	CardNo     *string `json:"cardNo,omitempty"`
	DateInfo   *string `json:"dateInfo,omitempty"`
	DateType   *string `json:"dateType,omitempty"`
	FatherName *string `json:"fatherName,omitempty"`
	Name       *string `json:"name,omitempty"`
	Gender     *string `json:"gender,omitempty"`
	Vid        *string `json:"vid,omitempty"`
	Address    *string `json:"address,omitempty"`
	SonOf      *string `json:"sonOf,omitempty"`
	HusbandOf  *string `json:"husbandOf,omitempty"`
}

ExtractTextResponseOcrResult struct for ExtractTextResponseOcrResult

func NewExtractTextResponseOcrResult

func NewExtractTextResponseOcrResult() *ExtractTextResponseOcrResult

NewExtractTextResponseOcrResult instantiates a new ExtractTextResponseOcrResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewExtractTextResponseOcrResultWithDefaults

func NewExtractTextResponseOcrResultWithDefaults() *ExtractTextResponseOcrResult

NewExtractTextResponseOcrResultWithDefaults instantiates a new ExtractTextResponseOcrResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ExtractTextResponseOcrResult) GetAddress

func (o *ExtractTextResponseOcrResult) GetAddress() string

GetAddress returns the Address field value if set, zero value otherwise.

func (*ExtractTextResponseOcrResult) GetAddressOk

func (o *ExtractTextResponseOcrResult) GetAddressOk() (*string, bool)

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponseOcrResult) GetCardNo

func (o *ExtractTextResponseOcrResult) GetCardNo() string

GetCardNo returns the CardNo field value if set, zero value otherwise.

func (*ExtractTextResponseOcrResult) GetCardNoOk

func (o *ExtractTextResponseOcrResult) GetCardNoOk() (*string, bool)

GetCardNoOk returns a tuple with the CardNo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponseOcrResult) GetDateInfo

func (o *ExtractTextResponseOcrResult) GetDateInfo() string

GetDateInfo returns the DateInfo field value if set, zero value otherwise.

func (*ExtractTextResponseOcrResult) GetDateInfoOk

func (o *ExtractTextResponseOcrResult) GetDateInfoOk() (*string, bool)

GetDateInfoOk returns a tuple with the DateInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponseOcrResult) GetDateType

func (o *ExtractTextResponseOcrResult) GetDateType() string

GetDateType returns the DateType field value if set, zero value otherwise.

func (*ExtractTextResponseOcrResult) GetDateTypeOk

func (o *ExtractTextResponseOcrResult) GetDateTypeOk() (*string, bool)

GetDateTypeOk returns a tuple with the DateType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponseOcrResult) GetFatherName

func (o *ExtractTextResponseOcrResult) GetFatherName() string

GetFatherName returns the FatherName field value if set, zero value otherwise.

func (*ExtractTextResponseOcrResult) GetFatherNameOk

func (o *ExtractTextResponseOcrResult) GetFatherNameOk() (*string, bool)

GetFatherNameOk returns a tuple with the FatherName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponseOcrResult) GetGender

func (o *ExtractTextResponseOcrResult) GetGender() string

GetGender returns the Gender field value if set, zero value otherwise.

func (*ExtractTextResponseOcrResult) GetGenderOk

func (o *ExtractTextResponseOcrResult) GetGenderOk() (*string, bool)

GetGenderOk returns a tuple with the Gender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponseOcrResult) GetHusbandOf

func (o *ExtractTextResponseOcrResult) GetHusbandOf() string

GetHusbandOf returns the HusbandOf field value if set, zero value otherwise.

func (*ExtractTextResponseOcrResult) GetHusbandOfOk

func (o *ExtractTextResponseOcrResult) GetHusbandOfOk() (*string, bool)

GetHusbandOfOk returns a tuple with the HusbandOf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponseOcrResult) GetName

func (o *ExtractTextResponseOcrResult) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ExtractTextResponseOcrResult) GetNameOk

func (o *ExtractTextResponseOcrResult) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponseOcrResult) GetSonOf

func (o *ExtractTextResponseOcrResult) GetSonOf() string

GetSonOf returns the SonOf field value if set, zero value otherwise.

func (*ExtractTextResponseOcrResult) GetSonOfOk

func (o *ExtractTextResponseOcrResult) GetSonOfOk() (*string, bool)

GetSonOfOk returns a tuple with the SonOf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponseOcrResult) GetVid

GetVid returns the Vid field value if set, zero value otherwise.

func (*ExtractTextResponseOcrResult) GetVidOk

func (o *ExtractTextResponseOcrResult) GetVidOk() (*string, bool)

GetVidOk returns a tuple with the Vid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ExtractTextResponseOcrResult) HasAddress

func (o *ExtractTextResponseOcrResult) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*ExtractTextResponseOcrResult) HasCardNo

func (o *ExtractTextResponseOcrResult) HasCardNo() bool

HasCardNo returns a boolean if a field has been set.

func (*ExtractTextResponseOcrResult) HasDateInfo

func (o *ExtractTextResponseOcrResult) HasDateInfo() bool

HasDateInfo returns a boolean if a field has been set.

func (*ExtractTextResponseOcrResult) HasDateType

func (o *ExtractTextResponseOcrResult) HasDateType() bool

HasDateType returns a boolean if a field has been set.

func (*ExtractTextResponseOcrResult) HasFatherName

func (o *ExtractTextResponseOcrResult) HasFatherName() bool

HasFatherName returns a boolean if a field has been set.

func (*ExtractTextResponseOcrResult) HasGender

func (o *ExtractTextResponseOcrResult) HasGender() bool

HasGender returns a boolean if a field has been set.

func (*ExtractTextResponseOcrResult) HasHusbandOf

func (o *ExtractTextResponseOcrResult) HasHusbandOf() bool

HasHusbandOf returns a boolean if a field has been set.

func (*ExtractTextResponseOcrResult) HasName

func (o *ExtractTextResponseOcrResult) HasName() bool

HasName returns a boolean if a field has been set.

func (*ExtractTextResponseOcrResult) HasSonOf

func (o *ExtractTextResponseOcrResult) HasSonOf() bool

HasSonOf returns a boolean if a field has been set.

func (*ExtractTextResponseOcrResult) HasVid

func (o *ExtractTextResponseOcrResult) HasVid() bool

HasVid returns a boolean if a field has been set.

func (ExtractTextResponseOcrResult) MarshalJSON

func (o ExtractTextResponseOcrResult) MarshalJSON() ([]byte, error)

func (*ExtractTextResponseOcrResult) SetAddress

func (o *ExtractTextResponseOcrResult) SetAddress(v string)

SetAddress gets a reference to the given string and assigns it to the Address field.

func (*ExtractTextResponseOcrResult) SetCardNo

func (o *ExtractTextResponseOcrResult) SetCardNo(v string)

SetCardNo gets a reference to the given string and assigns it to the CardNo field.

func (*ExtractTextResponseOcrResult) SetDateInfo

func (o *ExtractTextResponseOcrResult) SetDateInfo(v string)

SetDateInfo gets a reference to the given string and assigns it to the DateInfo field.

func (*ExtractTextResponseOcrResult) SetDateType

func (o *ExtractTextResponseOcrResult) SetDateType(v string)

SetDateType gets a reference to the given string and assigns it to the DateType field.

func (*ExtractTextResponseOcrResult) SetFatherName

func (o *ExtractTextResponseOcrResult) SetFatherName(v string)

SetFatherName gets a reference to the given string and assigns it to the FatherName field.

func (*ExtractTextResponseOcrResult) SetGender

func (o *ExtractTextResponseOcrResult) SetGender(v string)

SetGender gets a reference to the given string and assigns it to the Gender field.

func (*ExtractTextResponseOcrResult) SetHusbandOf

func (o *ExtractTextResponseOcrResult) SetHusbandOf(v string)

SetHusbandOf gets a reference to the given string and assigns it to the HusbandOf field.

func (*ExtractTextResponseOcrResult) SetName

func (o *ExtractTextResponseOcrResult) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ExtractTextResponseOcrResult) SetSonOf

func (o *ExtractTextResponseOcrResult) SetSonOf(v string)

SetSonOf gets a reference to the given string and assigns it to the SonOf field.

func (*ExtractTextResponseOcrResult) SetVid

func (o *ExtractTextResponseOcrResult) SetVid(v string)

SetVid gets a reference to the given string and assigns it to the Vid field.

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type KYCApiCheckImageQualityRequest

type KYCApiCheckImageQualityRequest struct {
	ApiService *KYCApiService
	// contains filtered or unexported fields
}

func (KYCApiCheckImageQualityRequest) Execute

func (*KYCApiCheckImageQualityRequest) Image

func (*KYCApiCheckImageQualityRequest) ImageUrl

func (*KYCApiCheckImageQualityRequest) QualityParameter

func (r *KYCApiCheckImageQualityRequest) QualityParameter(qualityParameter string) *KYCApiCheckImageQualityRequest

type KYCApiCheckPhotocopyRequest

type KYCApiCheckPhotocopyRequest struct {
	ApiService *KYCApiService
	// contains filtered or unexported fields
}

func (KYCApiCheckPhotocopyRequest) Execute

func (*KYCApiCheckPhotocopyRequest) Image

func (*KYCApiCheckPhotocopyRequest) ImageUrl

type KYCApiCheckVideoLivenessRequest

type KYCApiCheckVideoLivenessRequest struct {
	ApiService *KYCApiService
	// contains filtered or unexported fields
}

func (KYCApiCheckVideoLivenessRequest) Execute

func (*KYCApiCheckVideoLivenessRequest) Video

func (*KYCApiCheckVideoLivenessRequest) VideoUrl

type KYCApiClassifyDocumentRequest

type KYCApiClassifyDocumentRequest struct {
	ApiService *KYCApiService
	// contains filtered or unexported fields
}

func (*KYCApiClassifyDocumentRequest) Document

func (*KYCApiClassifyDocumentRequest) DocumentUrl

func (KYCApiClassifyDocumentRequest) Execute

type KYCApiExtractTextRequest

type KYCApiExtractTextRequest struct {
	ApiService *KYCApiService
	// contains filtered or unexported fields
}

func (*KYCApiExtractTextRequest) Document

func (r *KYCApiExtractTextRequest) Document(document *os.File) *KYCApiExtractTextRequest

func (*KYCApiExtractTextRequest) DocumentBack

func (r *KYCApiExtractTextRequest) DocumentBack(documentBack *os.File) *KYCApiExtractTextRequest

func (*KYCApiExtractTextRequest) DocumentBackUrl

func (r *KYCApiExtractTextRequest) DocumentBackUrl(documentBackUrl string) *KYCApiExtractTextRequest

func (*KYCApiExtractTextRequest) DocumentUrl

func (r *KYCApiExtractTextRequest) DocumentUrl(documentUrl string) *KYCApiExtractTextRequest

func (KYCApiExtractTextRequest) Execute

type KYCApiMaskAadhaarUidRequest

type KYCApiMaskAadhaarUidRequest struct {
	ApiService *KYCApiService
	// contains filtered or unexported fields
}

func (KYCApiMaskAadhaarUidRequest) Execute

func (*KYCApiMaskAadhaarUidRequest) Image

func (*KYCApiMaskAadhaarUidRequest) ImageUrl

type KYCApiMatchFaceRequest

type KYCApiMatchFaceRequest struct {
	ApiService *KYCApiService
	// contains filtered or unexported fields
}

func (KYCApiMatchFaceRequest) Execute

func (*KYCApiMatchFaceRequest) Image1

func (*KYCApiMatchFaceRequest) Image1Url

func (r *KYCApiMatchFaceRequest) Image1Url(image1Url string) *KYCApiMatchFaceRequest

func (*KYCApiMatchFaceRequest) Image2

func (*KYCApiMatchFaceRequest) Image2Url

func (r *KYCApiMatchFaceRequest) Image2Url(image2Url string) *KYCApiMatchFaceRequest

func (*KYCApiMatchFaceRequest) Threshold

func (r *KYCApiMatchFaceRequest) Threshold(threshold int32) *KYCApiMatchFaceRequest

type KYCApiService

type KYCApiService service

KYCApiService KYCApi service

func (*KYCApiService) CheckImageQuality

func (a *KYCApiService) CheckImageQuality(referenceId string, consent bool, consentPurpose string) KYCApiCheckImageQualityRequest

CheckImageQuality Image Quality Check

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param referenceId
@param consent
@param consentPurpose
@return KYCApiCheckImageQualityRequest

func (*KYCApiService) CheckImageQualityExecute

Execute executes the request

@return CheckImageQualityResponse

func (*KYCApiService) CheckPhotocopy

func (a *KYCApiService) CheckPhotocopy(referenceId string, consent bool, consentPurpose string) KYCApiCheckPhotocopyRequest

CheckPhotocopy Photocopy Check

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param referenceId
@param consent
@param consentPurpose
@return KYCApiCheckPhotocopyRequest

func (*KYCApiService) CheckPhotocopyExecute

Execute executes the request

@return CheckPhotocopyResponse

func (*KYCApiService) CheckVideoLiveness

func (a *KYCApiService) CheckVideoLiveness(referenceId string, consent string, consentPurpose string) KYCApiCheckVideoLivenessRequest

CheckVideoLiveness Liveness Check

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param referenceId
@param consent
@param consentPurpose
@return KYCApiCheckVideoLivenessRequest

func (*KYCApiService) CheckVideoLivenessExecute

Execute executes the request

@return CheckVideoLivenessResponse

func (*KYCApiService) ClassifyDocument

func (a *KYCApiService) ClassifyDocument(referenceId string, documentType string, consent bool, consentPurpose string) KYCApiClassifyDocumentRequest

ClassifyDocument ID Classification

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param referenceId
@param documentType
@param consent
@param consentPurpose
@return KYCApiClassifyDocumentRequest

func (*KYCApiService) ClassifyDocumentExecute

Execute executes the request

@return ClassifyDocumentResponse

func (*KYCApiService) ExtractText

func (a *KYCApiService) ExtractText(referenceId string, documentType string, consent string, consentPurpose string, kycValidate int32) KYCApiExtractTextRequest

ExtractText Scan & Extract

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param referenceId
@param documentType
@param consent
@param consentPurpose
@param kycValidate
@return KYCApiExtractTextRequest

func (*KYCApiService) ExtractTextExecute

Execute executes the request

@return ExtractTextResponse

func (*KYCApiService) MaskAadhaarUid

func (a *KYCApiService) MaskAadhaarUid(referenceId string, consent bool, consentPurpose string) KYCApiMaskAadhaarUidRequest

MaskAadhaarUid Aadhaar Masking

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param referenceId
@param consent
@param consentPurpose
@return KYCApiMaskAadhaarUidRequest

func (*KYCApiService) MaskAadhaarUidExecute

Execute executes the request

@return MaskAadhaarUidResponse

func (*KYCApiService) MatchFace

func (a *KYCApiService) MatchFace(referenceId string, consent string, consentPurpose string) KYCApiMatchFaceRequest

MatchFace Face Match

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param referenceId
@param consent
@param consentPurpose
@return KYCApiMatchFaceRequest

func (*KYCApiService) MatchFaceExecute

Execute executes the request

@return MatchFaceResponse

func (*KYCApiService) Validate

func (a *KYCApiService) Validate(validateRequest ValidateRequest) KYCApiValidateRequest

Validate Validate

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param validateRequest
@return KYCApiValidateRequest

func (*KYCApiService) ValidateExecute

Execute executes the request

@return ValidateResponse

type KYCApiValidateRequest

type KYCApiValidateRequest struct {
	ApiService *KYCApiService
	// contains filtered or unexported fields
}

func (KYCApiValidateRequest) Execute

type MaskAadhaarRequest

type MaskAadhaarRequest struct {
	ReferenceId    string    `json:"reference_id"`
	Consent        bool      `json:"consent"`
	ConsentPurpose string    `json:"consent_purpose"`
	Image          **os.File `json:"image,omitempty"`
	ImageUrl       *string   `json:"image_url,omitempty"`
}

MaskAadhaarRequest struct for MaskAadhaarRequest

func NewMaskAadhaarRequest

func NewMaskAadhaarRequest(referenceId string, consent bool, consentPurpose string) *MaskAadhaarRequest

NewMaskAadhaarRequest instantiates a new MaskAadhaarRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMaskAadhaarRequestWithDefaults

func NewMaskAadhaarRequestWithDefaults() *MaskAadhaarRequest

NewMaskAadhaarRequestWithDefaults instantiates a new MaskAadhaarRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MaskAadhaarRequest) GetConsent

func (o *MaskAadhaarRequest) GetConsent() bool

GetConsent returns the Consent field value

func (*MaskAadhaarRequest) GetConsentOk

func (o *MaskAadhaarRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value and a boolean to check if the value has been set.

func (*MaskAadhaarRequest) GetConsentPurpose

func (o *MaskAadhaarRequest) GetConsentPurpose() string

GetConsentPurpose returns the ConsentPurpose field value

func (*MaskAadhaarRequest) GetConsentPurposeOk

func (o *MaskAadhaarRequest) GetConsentPurposeOk() (*string, bool)

GetConsentPurposeOk returns a tuple with the ConsentPurpose field value and a boolean to check if the value has been set.

func (*MaskAadhaarRequest) GetImage

func (o *MaskAadhaarRequest) GetImage() *os.File

GetImage returns the Image field value if set, zero value otherwise.

func (*MaskAadhaarRequest) GetImageOk

func (o *MaskAadhaarRequest) GetImageOk() (**os.File, bool)

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskAadhaarRequest) GetImageUrl

func (o *MaskAadhaarRequest) GetImageUrl() string

GetImageUrl returns the ImageUrl field value if set, zero value otherwise.

func (*MaskAadhaarRequest) GetImageUrlOk

func (o *MaskAadhaarRequest) GetImageUrlOk() (*string, bool)

GetImageUrlOk returns a tuple with the ImageUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskAadhaarRequest) GetReferenceId

func (o *MaskAadhaarRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value

func (*MaskAadhaarRequest) GetReferenceIdOk

func (o *MaskAadhaarRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value and a boolean to check if the value has been set.

func (*MaskAadhaarRequest) HasImage

func (o *MaskAadhaarRequest) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*MaskAadhaarRequest) HasImageUrl

func (o *MaskAadhaarRequest) HasImageUrl() bool

HasImageUrl returns a boolean if a field has been set.

func (MaskAadhaarRequest) MarshalJSON

func (o MaskAadhaarRequest) MarshalJSON() ([]byte, error)

func (*MaskAadhaarRequest) SetConsent

func (o *MaskAadhaarRequest) SetConsent(v bool)

SetConsent sets field value

func (*MaskAadhaarRequest) SetConsentPurpose

func (o *MaskAadhaarRequest) SetConsentPurpose(v string)

SetConsentPurpose sets field value

func (*MaskAadhaarRequest) SetImage

func (o *MaskAadhaarRequest) SetImage(v *os.File)

SetImage gets a reference to the given *os.File and assigns it to the Image field.

func (*MaskAadhaarRequest) SetImageUrl

func (o *MaskAadhaarRequest) SetImageUrl(v string)

SetImageUrl gets a reference to the given string and assigns it to the ImageUrl field.

func (*MaskAadhaarRequest) SetReferenceId

func (o *MaskAadhaarRequest) SetReferenceId(v string)

SetReferenceId sets field value

type MaskAadhaarUid400Response

type MaskAadhaarUid400Response struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Status        *string `json:"status,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	Message       *string `json:"message,omitempty"`
}

MaskAadhaarUid400Response struct for MaskAadhaarUid400Response

func NewMaskAadhaarUid400Response

func NewMaskAadhaarUid400Response() *MaskAadhaarUid400Response

NewMaskAadhaarUid400Response instantiates a new MaskAadhaarUid400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMaskAadhaarUid400ResponseWithDefaults

func NewMaskAadhaarUid400ResponseWithDefaults() *MaskAadhaarUid400Response

NewMaskAadhaarUid400ResponseWithDefaults instantiates a new MaskAadhaarUid400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MaskAadhaarUid400Response) GetDecentroTxnId

func (o *MaskAadhaarUid400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*MaskAadhaarUid400Response) GetDecentroTxnIdOk

func (o *MaskAadhaarUid400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskAadhaarUid400Response) GetMessage

func (o *MaskAadhaarUid400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*MaskAadhaarUid400Response) GetMessageOk

func (o *MaskAadhaarUid400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskAadhaarUid400Response) GetResponseCode

func (o *MaskAadhaarUid400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*MaskAadhaarUid400Response) GetResponseCodeOk

func (o *MaskAadhaarUid400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskAadhaarUid400Response) GetStatus

func (o *MaskAadhaarUid400Response) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*MaskAadhaarUid400Response) GetStatusOk

func (o *MaskAadhaarUid400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskAadhaarUid400Response) HasDecentroTxnId

func (o *MaskAadhaarUid400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*MaskAadhaarUid400Response) HasMessage

func (o *MaskAadhaarUid400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*MaskAadhaarUid400Response) HasResponseCode

func (o *MaskAadhaarUid400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*MaskAadhaarUid400Response) HasStatus

func (o *MaskAadhaarUid400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (MaskAadhaarUid400Response) MarshalJSON

func (o MaskAadhaarUid400Response) MarshalJSON() ([]byte, error)

func (*MaskAadhaarUid400Response) SetDecentroTxnId

func (o *MaskAadhaarUid400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*MaskAadhaarUid400Response) SetMessage

func (o *MaskAadhaarUid400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*MaskAadhaarUid400Response) SetResponseCode

func (o *MaskAadhaarUid400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*MaskAadhaarUid400Response) SetStatus

func (o *MaskAadhaarUid400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type MaskAadhaarUidResponse

type MaskAadhaarUidResponse struct {
	Data          *MaskAadhaarUidResponseData `json:"data,omitempty"`
	DecentroTxnId *string                     `json:"decentroTxnId,omitempty"`
	Message       *string                     `json:"message,omitempty"`
	ResponseCode  *string                     `json:"responseCode,omitempty"`
	Status        *string                     `json:"status,omitempty"`
}

MaskAadhaarUidResponse struct for MaskAadhaarUidResponse

func NewMaskAadhaarUidResponse

func NewMaskAadhaarUidResponse() *MaskAadhaarUidResponse

NewMaskAadhaarUidResponse instantiates a new MaskAadhaarUidResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMaskAadhaarUidResponseWithDefaults

func NewMaskAadhaarUidResponseWithDefaults() *MaskAadhaarUidResponse

NewMaskAadhaarUidResponseWithDefaults instantiates a new MaskAadhaarUidResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MaskAadhaarUidResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*MaskAadhaarUidResponse) GetDataOk

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskAadhaarUidResponse) GetDecentroTxnId

func (o *MaskAadhaarUidResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*MaskAadhaarUidResponse) GetDecentroTxnIdOk

func (o *MaskAadhaarUidResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskAadhaarUidResponse) GetMessage

func (o *MaskAadhaarUidResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*MaskAadhaarUidResponse) GetMessageOk

func (o *MaskAadhaarUidResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskAadhaarUidResponse) GetResponseCode

func (o *MaskAadhaarUidResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*MaskAadhaarUidResponse) GetResponseCodeOk

func (o *MaskAadhaarUidResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskAadhaarUidResponse) GetStatus

func (o *MaskAadhaarUidResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*MaskAadhaarUidResponse) GetStatusOk

func (o *MaskAadhaarUidResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskAadhaarUidResponse) HasData

func (o *MaskAadhaarUidResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*MaskAadhaarUidResponse) HasDecentroTxnId

func (o *MaskAadhaarUidResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*MaskAadhaarUidResponse) HasMessage

func (o *MaskAadhaarUidResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*MaskAadhaarUidResponse) HasResponseCode

func (o *MaskAadhaarUidResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*MaskAadhaarUidResponse) HasStatus

func (o *MaskAadhaarUidResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (MaskAadhaarUidResponse) MarshalJSON

func (o MaskAadhaarUidResponse) MarshalJSON() ([]byte, error)

func (*MaskAadhaarUidResponse) SetData

SetData gets a reference to the given MaskAadhaarUidResponseData and assigns it to the Data field.

func (*MaskAadhaarUidResponse) SetDecentroTxnId

func (o *MaskAadhaarUidResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*MaskAadhaarUidResponse) SetMessage

func (o *MaskAadhaarUidResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*MaskAadhaarUidResponse) SetResponseCode

func (o *MaskAadhaarUidResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*MaskAadhaarUidResponse) SetStatus

func (o *MaskAadhaarUidResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type MaskAadhaarUidResponseData

type MaskAadhaarUidResponseData struct {
	IsMasked     *bool    `json:"isMasked,omitempty"`
	MaskedImages []string `json:"maskedImages,omitempty"`
}

MaskAadhaarUidResponseData struct for MaskAadhaarUidResponseData

func NewMaskAadhaarUidResponseData

func NewMaskAadhaarUidResponseData() *MaskAadhaarUidResponseData

NewMaskAadhaarUidResponseData instantiates a new MaskAadhaarUidResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMaskAadhaarUidResponseDataWithDefaults

func NewMaskAadhaarUidResponseDataWithDefaults() *MaskAadhaarUidResponseData

NewMaskAadhaarUidResponseDataWithDefaults instantiates a new MaskAadhaarUidResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MaskAadhaarUidResponseData) GetIsMasked

func (o *MaskAadhaarUidResponseData) GetIsMasked() bool

GetIsMasked returns the IsMasked field value if set, zero value otherwise.

func (*MaskAadhaarUidResponseData) GetIsMaskedOk

func (o *MaskAadhaarUidResponseData) GetIsMaskedOk() (*bool, bool)

GetIsMaskedOk returns a tuple with the IsMasked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskAadhaarUidResponseData) GetMaskedImages

func (o *MaskAadhaarUidResponseData) GetMaskedImages() []string

GetMaskedImages returns the MaskedImages field value if set, zero value otherwise.

func (*MaskAadhaarUidResponseData) GetMaskedImagesOk

func (o *MaskAadhaarUidResponseData) GetMaskedImagesOk() ([]string, bool)

GetMaskedImagesOk returns a tuple with the MaskedImages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MaskAadhaarUidResponseData) HasIsMasked

func (o *MaskAadhaarUidResponseData) HasIsMasked() bool

HasIsMasked returns a boolean if a field has been set.

func (*MaskAadhaarUidResponseData) HasMaskedImages

func (o *MaskAadhaarUidResponseData) HasMaskedImages() bool

HasMaskedImages returns a boolean if a field has been set.

func (MaskAadhaarUidResponseData) MarshalJSON

func (o MaskAadhaarUidResponseData) MarshalJSON() ([]byte, error)

func (*MaskAadhaarUidResponseData) SetIsMasked

func (o *MaskAadhaarUidResponseData) SetIsMasked(v bool)

SetIsMasked gets a reference to the given bool and assigns it to the IsMasked field.

func (*MaskAadhaarUidResponseData) SetMaskedImages

func (o *MaskAadhaarUidResponseData) SetMaskedImages(v []string)

SetMaskedImages gets a reference to the given []string and assigns it to the MaskedImages field.

type MatchFace400Response

type MatchFace400Response struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Status        *string `json:"status,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	Message       *string `json:"message,omitempty"`
}

MatchFace400Response struct for MatchFace400Response

func NewMatchFace400Response

func NewMatchFace400Response() *MatchFace400Response

NewMatchFace400Response instantiates a new MatchFace400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMatchFace400ResponseWithDefaults

func NewMatchFace400ResponseWithDefaults() *MatchFace400Response

NewMatchFace400ResponseWithDefaults instantiates a new MatchFace400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MatchFace400Response) GetDecentroTxnId

func (o *MatchFace400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*MatchFace400Response) GetDecentroTxnIdOk

func (o *MatchFace400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFace400Response) GetMessage

func (o *MatchFace400Response) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*MatchFace400Response) GetMessageOk

func (o *MatchFace400Response) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFace400Response) GetResponseCode

func (o *MatchFace400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*MatchFace400Response) GetResponseCodeOk

func (o *MatchFace400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFace400Response) GetStatus

func (o *MatchFace400Response) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*MatchFace400Response) GetStatusOk

func (o *MatchFace400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFace400Response) HasDecentroTxnId

func (o *MatchFace400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*MatchFace400Response) HasMessage

func (o *MatchFace400Response) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*MatchFace400Response) HasResponseCode

func (o *MatchFace400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*MatchFace400Response) HasStatus

func (o *MatchFace400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (MatchFace400Response) MarshalJSON

func (o MatchFace400Response) MarshalJSON() ([]byte, error)

func (*MatchFace400Response) SetDecentroTxnId

func (o *MatchFace400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*MatchFace400Response) SetMessage

func (o *MatchFace400Response) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*MatchFace400Response) SetResponseCode

func (o *MatchFace400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*MatchFace400Response) SetStatus

func (o *MatchFace400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type MatchFaceRequest

type MatchFaceRequest struct {
	//
	ReferenceId string `json:"reference_id"`
	//
	Consent string `json:"consent"`
	//
	ConsentPurpose string    `json:"consent_purpose"`
	Image1         **os.File `json:"image1,omitempty"`
	Image2         **os.File `json:"image2,omitempty"`
	Threshold      *int32    `json:"threshold,omitempty"`
	Image1Url      *string   `json:"image1_url,omitempty"`
	Image2Url      *string   `json:"image2_url,omitempty"`
}

MatchFaceRequest struct for MatchFaceRequest

func NewMatchFaceRequest

func NewMatchFaceRequest(referenceId string, consent string, consentPurpose string) *MatchFaceRequest

NewMatchFaceRequest instantiates a new MatchFaceRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMatchFaceRequestWithDefaults

func NewMatchFaceRequestWithDefaults() *MatchFaceRequest

NewMatchFaceRequestWithDefaults instantiates a new MatchFaceRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MatchFaceRequest) GetConsent

func (o *MatchFaceRequest) GetConsent() string

GetConsent returns the Consent field value

func (*MatchFaceRequest) GetConsentOk

func (o *MatchFaceRequest) GetConsentOk() (*string, bool)

GetConsentOk returns a tuple with the Consent field value and a boolean to check if the value has been set.

func (*MatchFaceRequest) GetConsentPurpose

func (o *MatchFaceRequest) GetConsentPurpose() string

GetConsentPurpose returns the ConsentPurpose field value

func (*MatchFaceRequest) GetConsentPurposeOk

func (o *MatchFaceRequest) GetConsentPurposeOk() (*string, bool)

GetConsentPurposeOk returns a tuple with the ConsentPurpose field value and a boolean to check if the value has been set.

func (*MatchFaceRequest) GetImage1

func (o *MatchFaceRequest) GetImage1() *os.File

GetImage1 returns the Image1 field value if set, zero value otherwise.

func (*MatchFaceRequest) GetImage1Ok

func (o *MatchFaceRequest) GetImage1Ok() (**os.File, bool)

GetImage1Ok returns a tuple with the Image1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFaceRequest) GetImage1Url

func (o *MatchFaceRequest) GetImage1Url() string

GetImage1Url returns the Image1Url field value if set, zero value otherwise.

func (*MatchFaceRequest) GetImage1UrlOk

func (o *MatchFaceRequest) GetImage1UrlOk() (*string, bool)

GetImage1UrlOk returns a tuple with the Image1Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFaceRequest) GetImage2

func (o *MatchFaceRequest) GetImage2() *os.File

GetImage2 returns the Image2 field value if set, zero value otherwise.

func (*MatchFaceRequest) GetImage2Ok

func (o *MatchFaceRequest) GetImage2Ok() (**os.File, bool)

GetImage2Ok returns a tuple with the Image2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFaceRequest) GetImage2Url

func (o *MatchFaceRequest) GetImage2Url() string

GetImage2Url returns the Image2Url field value if set, zero value otherwise.

func (*MatchFaceRequest) GetImage2UrlOk

func (o *MatchFaceRequest) GetImage2UrlOk() (*string, bool)

GetImage2UrlOk returns a tuple with the Image2Url field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFaceRequest) GetReferenceId

func (o *MatchFaceRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value

func (*MatchFaceRequest) GetReferenceIdOk

func (o *MatchFaceRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value and a boolean to check if the value has been set.

func (*MatchFaceRequest) GetThreshold

func (o *MatchFaceRequest) GetThreshold() int32

GetThreshold returns the Threshold field value if set, zero value otherwise.

func (*MatchFaceRequest) GetThresholdOk

func (o *MatchFaceRequest) GetThresholdOk() (*int32, bool)

GetThresholdOk returns a tuple with the Threshold field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFaceRequest) HasImage1

func (o *MatchFaceRequest) HasImage1() bool

HasImage1 returns a boolean if a field has been set.

func (*MatchFaceRequest) HasImage1Url

func (o *MatchFaceRequest) HasImage1Url() bool

HasImage1Url returns a boolean if a field has been set.

func (*MatchFaceRequest) HasImage2

func (o *MatchFaceRequest) HasImage2() bool

HasImage2 returns a boolean if a field has been set.

func (*MatchFaceRequest) HasImage2Url

func (o *MatchFaceRequest) HasImage2Url() bool

HasImage2Url returns a boolean if a field has been set.

func (*MatchFaceRequest) HasThreshold

func (o *MatchFaceRequest) HasThreshold() bool

HasThreshold returns a boolean if a field has been set.

func (MatchFaceRequest) MarshalJSON

func (o MatchFaceRequest) MarshalJSON() ([]byte, error)

func (*MatchFaceRequest) SetConsent

func (o *MatchFaceRequest) SetConsent(v string)

SetConsent sets field value

func (*MatchFaceRequest) SetConsentPurpose

func (o *MatchFaceRequest) SetConsentPurpose(v string)

SetConsentPurpose sets field value

func (*MatchFaceRequest) SetImage1

func (o *MatchFaceRequest) SetImage1(v *os.File)

SetImage1 gets a reference to the given *os.File and assigns it to the Image1 field.

func (*MatchFaceRequest) SetImage1Url

func (o *MatchFaceRequest) SetImage1Url(v string)

SetImage1Url gets a reference to the given string and assigns it to the Image1Url field.

func (*MatchFaceRequest) SetImage2

func (o *MatchFaceRequest) SetImage2(v *os.File)

SetImage2 gets a reference to the given *os.File and assigns it to the Image2 field.

func (*MatchFaceRequest) SetImage2Url

func (o *MatchFaceRequest) SetImage2Url(v string)

SetImage2Url gets a reference to the given string and assigns it to the Image2Url field.

func (*MatchFaceRequest) SetReferenceId

func (o *MatchFaceRequest) SetReferenceId(v string)

SetReferenceId sets field value

func (*MatchFaceRequest) SetThreshold

func (o *MatchFaceRequest) SetThreshold(v int32)

SetThreshold gets a reference to the given int32 and assigns it to the Threshold field.

type MatchFaceResponse

type MatchFaceResponse struct {
	DecentroTxnId *string                `json:"decentroTxnId,omitempty"`
	Status        *string                `json:"status,omitempty"`
	ResponseCode  *string                `json:"responseCode,omitempty"`
	Message       *string                `json:"message,omitempty"`
	Data          *MatchFaceResponseData `json:"data,omitempty"`
}

MatchFaceResponse struct for MatchFaceResponse

func NewMatchFaceResponse

func NewMatchFaceResponse() *MatchFaceResponse

NewMatchFaceResponse instantiates a new MatchFaceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMatchFaceResponseWithDefaults

func NewMatchFaceResponseWithDefaults() *MatchFaceResponse

NewMatchFaceResponseWithDefaults instantiates a new MatchFaceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MatchFaceResponse) GetData

GetData returns the Data field value if set, zero value otherwise.

func (*MatchFaceResponse) GetDataOk

func (o *MatchFaceResponse) GetDataOk() (*MatchFaceResponseData, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFaceResponse) GetDecentroTxnId

func (o *MatchFaceResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*MatchFaceResponse) GetDecentroTxnIdOk

func (o *MatchFaceResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFaceResponse) GetMessage

func (o *MatchFaceResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*MatchFaceResponse) GetMessageOk

func (o *MatchFaceResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFaceResponse) GetResponseCode

func (o *MatchFaceResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*MatchFaceResponse) GetResponseCodeOk

func (o *MatchFaceResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFaceResponse) GetStatus

func (o *MatchFaceResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*MatchFaceResponse) GetStatusOk

func (o *MatchFaceResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFaceResponse) HasData

func (o *MatchFaceResponse) HasData() bool

HasData returns a boolean if a field has been set.

func (*MatchFaceResponse) HasDecentroTxnId

func (o *MatchFaceResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*MatchFaceResponse) HasMessage

func (o *MatchFaceResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*MatchFaceResponse) HasResponseCode

func (o *MatchFaceResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*MatchFaceResponse) HasStatus

func (o *MatchFaceResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (MatchFaceResponse) MarshalJSON

func (o MatchFaceResponse) MarshalJSON() ([]byte, error)

func (*MatchFaceResponse) SetData

SetData gets a reference to the given MatchFaceResponseData and assigns it to the Data field.

func (*MatchFaceResponse) SetDecentroTxnId

func (o *MatchFaceResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*MatchFaceResponse) SetMessage

func (o *MatchFaceResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*MatchFaceResponse) SetResponseCode

func (o *MatchFaceResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*MatchFaceResponse) SetStatus

func (o *MatchFaceResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type MatchFaceResponseData

type MatchFaceResponseData struct {
	Status *string `json:"status,omitempty"`
	Match  *string `json:"match,omitempty"`
}

MatchFaceResponseData struct for MatchFaceResponseData

func NewMatchFaceResponseData

func NewMatchFaceResponseData() *MatchFaceResponseData

NewMatchFaceResponseData instantiates a new MatchFaceResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewMatchFaceResponseDataWithDefaults

func NewMatchFaceResponseDataWithDefaults() *MatchFaceResponseData

NewMatchFaceResponseDataWithDefaults instantiates a new MatchFaceResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*MatchFaceResponseData) GetMatch

func (o *MatchFaceResponseData) GetMatch() string

GetMatch returns the Match field value if set, zero value otherwise.

func (*MatchFaceResponseData) GetMatchOk

func (o *MatchFaceResponseData) GetMatchOk() (*string, bool)

GetMatchOk returns a tuple with the Match field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFaceResponseData) GetStatus

func (o *MatchFaceResponseData) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*MatchFaceResponseData) GetStatusOk

func (o *MatchFaceResponseData) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MatchFaceResponseData) HasMatch

func (o *MatchFaceResponseData) HasMatch() bool

HasMatch returns a boolean if a field has been set.

func (*MatchFaceResponseData) HasStatus

func (o *MatchFaceResponseData) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (MatchFaceResponseData) MarshalJSON

func (o MatchFaceResponseData) MarshalJSON() ([]byte, error)

func (*MatchFaceResponseData) SetMatch

func (o *MatchFaceResponseData) SetMatch(v string)

SetMatch gets a reference to the given string and assigns it to the Match field.

func (*MatchFaceResponseData) SetStatus

func (o *MatchFaceResponseData) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type NullableAadhaarxmlGenerateOtp400Response added in v1.0.1

type NullableAadhaarxmlGenerateOtp400Response struct {
	// contains filtered or unexported fields
}

func NewNullableAadhaarxmlGenerateOtp400Response added in v1.0.1

func NewNullableAadhaarxmlGenerateOtp400Response(val *AadhaarxmlGenerateOtp400Response) *NullableAadhaarxmlGenerateOtp400Response

func (NullableAadhaarxmlGenerateOtp400Response) Get added in v1.0.1

func (NullableAadhaarxmlGenerateOtp400Response) IsSet added in v1.0.1

func (NullableAadhaarxmlGenerateOtp400Response) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlGenerateOtp400Response) Set added in v1.0.1

func (*NullableAadhaarxmlGenerateOtp400Response) UnmarshalJSON added in v1.0.1

func (v *NullableAadhaarxmlGenerateOtp400Response) UnmarshalJSON(src []byte) error

func (*NullableAadhaarxmlGenerateOtp400Response) Unset added in v1.0.1

type NullableAadhaarxmlGenerateOtpRequest

type NullableAadhaarxmlGenerateOtpRequest struct {
	// contains filtered or unexported fields
}

func (NullableAadhaarxmlGenerateOtpRequest) Get

func (NullableAadhaarxmlGenerateOtpRequest) IsSet

func (NullableAadhaarxmlGenerateOtpRequest) MarshalJSON

func (v NullableAadhaarxmlGenerateOtpRequest) MarshalJSON() ([]byte, error)

func (*NullableAadhaarxmlGenerateOtpRequest) Set

func (*NullableAadhaarxmlGenerateOtpRequest) UnmarshalJSON

func (v *NullableAadhaarxmlGenerateOtpRequest) UnmarshalJSON(src []byte) error

func (*NullableAadhaarxmlGenerateOtpRequest) Unset

type NullableAadhaarxmlGenerateOtpResponse added in v1.0.1

type NullableAadhaarxmlGenerateOtpResponse struct {
	// contains filtered or unexported fields
}

func NewNullableAadhaarxmlGenerateOtpResponse added in v1.0.1

func NewNullableAadhaarxmlGenerateOtpResponse(val *AadhaarxmlGenerateOtpResponse) *NullableAadhaarxmlGenerateOtpResponse

func (NullableAadhaarxmlGenerateOtpResponse) Get added in v1.0.1

func (NullableAadhaarxmlGenerateOtpResponse) IsSet added in v1.0.1

func (NullableAadhaarxmlGenerateOtpResponse) MarshalJSON added in v1.0.1

func (v NullableAadhaarxmlGenerateOtpResponse) MarshalJSON() ([]byte, error)

func (*NullableAadhaarxmlGenerateOtpResponse) Set added in v1.0.1

func (*NullableAadhaarxmlGenerateOtpResponse) UnmarshalJSON added in v1.0.1

func (v *NullableAadhaarxmlGenerateOtpResponse) UnmarshalJSON(src []byte) error

func (*NullableAadhaarxmlGenerateOtpResponse) Unset added in v1.0.1

type NullableAadhaarxmlInitiateSession400Response added in v1.0.1

type NullableAadhaarxmlInitiateSession400Response struct {
	// contains filtered or unexported fields
}

func NewNullableAadhaarxmlInitiateSession400Response added in v1.0.1

func NewNullableAadhaarxmlInitiateSession400Response(val *AadhaarxmlInitiateSession400Response) *NullableAadhaarxmlInitiateSession400Response

func (NullableAadhaarxmlInitiateSession400Response) Get added in v1.0.1

func (NullableAadhaarxmlInitiateSession400Response) IsSet added in v1.0.1

func (NullableAadhaarxmlInitiateSession400Response) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlInitiateSession400Response) Set added in v1.0.1

func (*NullableAadhaarxmlInitiateSession400Response) UnmarshalJSON added in v1.0.1

func (*NullableAadhaarxmlInitiateSession400Response) Unset added in v1.0.1

type NullableAadhaarxmlInitiateSession400ResponseData added in v1.0.1

type NullableAadhaarxmlInitiateSession400ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableAadhaarxmlInitiateSession400ResponseData) Get added in v1.0.1

func (NullableAadhaarxmlInitiateSession400ResponseData) IsSet added in v1.0.1

func (NullableAadhaarxmlInitiateSession400ResponseData) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlInitiateSession400ResponseData) Set added in v1.0.1

func (*NullableAadhaarxmlInitiateSession400ResponseData) UnmarshalJSON added in v1.0.1

func (*NullableAadhaarxmlInitiateSession400ResponseData) Unset added in v1.0.1

type NullableAadhaarxmlInitiateSessionRequest

type NullableAadhaarxmlInitiateSessionRequest struct {
	// contains filtered or unexported fields
}

func (NullableAadhaarxmlInitiateSessionRequest) Get

func (NullableAadhaarxmlInitiateSessionRequest) IsSet

func (NullableAadhaarxmlInitiateSessionRequest) MarshalJSON

func (*NullableAadhaarxmlInitiateSessionRequest) Set

func (*NullableAadhaarxmlInitiateSessionRequest) UnmarshalJSON

func (v *NullableAadhaarxmlInitiateSessionRequest) UnmarshalJSON(src []byte) error

func (*NullableAadhaarxmlInitiateSessionRequest) Unset

type NullableAadhaarxmlInitiateSessionResponse added in v1.0.1

type NullableAadhaarxmlInitiateSessionResponse struct {
	// contains filtered or unexported fields
}

func NewNullableAadhaarxmlInitiateSessionResponse added in v1.0.1

func NewNullableAadhaarxmlInitiateSessionResponse(val *AadhaarxmlInitiateSessionResponse) *NullableAadhaarxmlInitiateSessionResponse

func (NullableAadhaarxmlInitiateSessionResponse) Get added in v1.0.1

func (NullableAadhaarxmlInitiateSessionResponse) IsSet added in v1.0.1

func (NullableAadhaarxmlInitiateSessionResponse) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlInitiateSessionResponse) Set added in v1.0.1

func (*NullableAadhaarxmlInitiateSessionResponse) UnmarshalJSON added in v1.0.1

func (v *NullableAadhaarxmlInitiateSessionResponse) UnmarshalJSON(src []byte) error

func (*NullableAadhaarxmlInitiateSessionResponse) Unset added in v1.0.1

type NullableAadhaarxmlInitiateSessionResponseData added in v1.0.1

type NullableAadhaarxmlInitiateSessionResponseData struct {
	// contains filtered or unexported fields
}

func (NullableAadhaarxmlInitiateSessionResponseData) Get added in v1.0.1

func (NullableAadhaarxmlInitiateSessionResponseData) IsSet added in v1.0.1

func (NullableAadhaarxmlInitiateSessionResponseData) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlInitiateSessionResponseData) Set added in v1.0.1

func (*NullableAadhaarxmlInitiateSessionResponseData) UnmarshalJSON added in v1.0.1

func (*NullableAadhaarxmlInitiateSessionResponseData) Unset added in v1.0.1

type NullableAadhaarxmlReloadCaptcha400Response added in v1.0.1

type NullableAadhaarxmlReloadCaptcha400Response struct {
	// contains filtered or unexported fields
}

func NewNullableAadhaarxmlReloadCaptcha400Response added in v1.0.1

func NewNullableAadhaarxmlReloadCaptcha400Response(val *AadhaarxmlReloadCaptcha400Response) *NullableAadhaarxmlReloadCaptcha400Response

func (NullableAadhaarxmlReloadCaptcha400Response) Get added in v1.0.1

func (NullableAadhaarxmlReloadCaptcha400Response) IsSet added in v1.0.1

func (NullableAadhaarxmlReloadCaptcha400Response) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlReloadCaptcha400Response) Set added in v1.0.1

func (*NullableAadhaarxmlReloadCaptcha400Response) UnmarshalJSON added in v1.0.1

func (v *NullableAadhaarxmlReloadCaptcha400Response) UnmarshalJSON(src []byte) error

func (*NullableAadhaarxmlReloadCaptcha400Response) Unset added in v1.0.1

type NullableAadhaarxmlReloadCaptcha400ResponseData added in v1.0.1

type NullableAadhaarxmlReloadCaptcha400ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableAadhaarxmlReloadCaptcha400ResponseData) Get added in v1.0.1

func (NullableAadhaarxmlReloadCaptcha400ResponseData) IsSet added in v1.0.1

func (NullableAadhaarxmlReloadCaptcha400ResponseData) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlReloadCaptcha400ResponseData) Set added in v1.0.1

func (*NullableAadhaarxmlReloadCaptcha400ResponseData) UnmarshalJSON added in v1.0.1

func (*NullableAadhaarxmlReloadCaptcha400ResponseData) Unset added in v1.0.1

type NullableAadhaarxmlReloadCaptchaRequest

type NullableAadhaarxmlReloadCaptchaRequest struct {
	// contains filtered or unexported fields
}

func (NullableAadhaarxmlReloadCaptchaRequest) Get

func (NullableAadhaarxmlReloadCaptchaRequest) IsSet

func (NullableAadhaarxmlReloadCaptchaRequest) MarshalJSON

func (v NullableAadhaarxmlReloadCaptchaRequest) MarshalJSON() ([]byte, error)

func (*NullableAadhaarxmlReloadCaptchaRequest) Set

func (*NullableAadhaarxmlReloadCaptchaRequest) UnmarshalJSON

func (v *NullableAadhaarxmlReloadCaptchaRequest) UnmarshalJSON(src []byte) error

func (*NullableAadhaarxmlReloadCaptchaRequest) Unset

type NullableAadhaarxmlReloadCaptchaResponse added in v1.0.1

type NullableAadhaarxmlReloadCaptchaResponse struct {
	// contains filtered or unexported fields
}

func NewNullableAadhaarxmlReloadCaptchaResponse added in v1.0.1

func NewNullableAadhaarxmlReloadCaptchaResponse(val *AadhaarxmlReloadCaptchaResponse) *NullableAadhaarxmlReloadCaptchaResponse

func (NullableAadhaarxmlReloadCaptchaResponse) Get added in v1.0.1

func (NullableAadhaarxmlReloadCaptchaResponse) IsSet added in v1.0.1

func (NullableAadhaarxmlReloadCaptchaResponse) MarshalJSON added in v1.0.1

func (v NullableAadhaarxmlReloadCaptchaResponse) MarshalJSON() ([]byte, error)

func (*NullableAadhaarxmlReloadCaptchaResponse) Set added in v1.0.1

func (*NullableAadhaarxmlReloadCaptchaResponse) UnmarshalJSON added in v1.0.1

func (v *NullableAadhaarxmlReloadCaptchaResponse) UnmarshalJSON(src []byte) error

func (*NullableAadhaarxmlReloadCaptchaResponse) Unset added in v1.0.1

type NullableAadhaarxmlReloadCaptchaResponseData added in v1.0.1

type NullableAadhaarxmlReloadCaptchaResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableAadhaarxmlReloadCaptchaResponseData added in v1.0.1

func NewNullableAadhaarxmlReloadCaptchaResponseData(val *AadhaarxmlReloadCaptchaResponseData) *NullableAadhaarxmlReloadCaptchaResponseData

func (NullableAadhaarxmlReloadCaptchaResponseData) Get added in v1.0.1

func (NullableAadhaarxmlReloadCaptchaResponseData) IsSet added in v1.0.1

func (NullableAadhaarxmlReloadCaptchaResponseData) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlReloadCaptchaResponseData) Set added in v1.0.1

func (*NullableAadhaarxmlReloadCaptchaResponseData) UnmarshalJSON added in v1.0.1

func (v *NullableAadhaarxmlReloadCaptchaResponseData) UnmarshalJSON(src []byte) error

func (*NullableAadhaarxmlReloadCaptchaResponseData) Unset added in v1.0.1

type NullableAadhaarxmlValidateOtp400Response added in v1.0.1

type NullableAadhaarxmlValidateOtp400Response struct {
	// contains filtered or unexported fields
}

func NewNullableAadhaarxmlValidateOtp400Response added in v1.0.1

func NewNullableAadhaarxmlValidateOtp400Response(val *AadhaarxmlValidateOtp400Response) *NullableAadhaarxmlValidateOtp400Response

func (NullableAadhaarxmlValidateOtp400Response) Get added in v1.0.1

func (NullableAadhaarxmlValidateOtp400Response) IsSet added in v1.0.1

func (NullableAadhaarxmlValidateOtp400Response) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400Response) Set added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400Response) UnmarshalJSON added in v1.0.1

func (v *NullableAadhaarxmlValidateOtp400Response) UnmarshalJSON(src []byte) error

func (*NullableAadhaarxmlValidateOtp400Response) Unset added in v1.0.1

type NullableAadhaarxmlValidateOtp400ResponseData added in v1.0.1

type NullableAadhaarxmlValidateOtp400ResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableAadhaarxmlValidateOtp400ResponseData added in v1.0.1

func NewNullableAadhaarxmlValidateOtp400ResponseData(val *AadhaarxmlValidateOtp400ResponseData) *NullableAadhaarxmlValidateOtp400ResponseData

func (NullableAadhaarxmlValidateOtp400ResponseData) Get added in v1.0.1

func (NullableAadhaarxmlValidateOtp400ResponseData) IsSet added in v1.0.1

func (NullableAadhaarxmlValidateOtp400ResponseData) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400ResponseData) Set added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400ResponseData) UnmarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400ResponseData) Unset added in v1.0.1

type NullableAadhaarxmlValidateOtp400ResponseDataAadhaarFile added in v1.0.1

type NullableAadhaarxmlValidateOtp400ResponseDataAadhaarFile struct {
	// contains filtered or unexported fields
}

func (NullableAadhaarxmlValidateOtp400ResponseDataAadhaarFile) Get added in v1.0.1

func (NullableAadhaarxmlValidateOtp400ResponseDataAadhaarFile) IsSet added in v1.0.1

func (NullableAadhaarxmlValidateOtp400ResponseDataAadhaarFile) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400ResponseDataAadhaarFile) Set added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400ResponseDataAadhaarFile) UnmarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400ResponseDataAadhaarFile) Unset added in v1.0.1

type NullableAadhaarxmlValidateOtp400ResponseDataProofOfAddress added in v1.0.1

type NullableAadhaarxmlValidateOtp400ResponseDataProofOfAddress struct {
	// contains filtered or unexported fields
}

func (NullableAadhaarxmlValidateOtp400ResponseDataProofOfAddress) Get added in v1.0.1

func (NullableAadhaarxmlValidateOtp400ResponseDataProofOfAddress) IsSet added in v1.0.1

func (NullableAadhaarxmlValidateOtp400ResponseDataProofOfAddress) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400ResponseDataProofOfAddress) Set added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400ResponseDataProofOfAddress) UnmarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400ResponseDataProofOfAddress) Unset added in v1.0.1

type NullableAadhaarxmlValidateOtp400ResponseDataProofOfIdentity added in v1.0.1

type NullableAadhaarxmlValidateOtp400ResponseDataProofOfIdentity struct {
	// contains filtered or unexported fields
}

func (NullableAadhaarxmlValidateOtp400ResponseDataProofOfIdentity) Get added in v1.0.1

func (NullableAadhaarxmlValidateOtp400ResponseDataProofOfIdentity) IsSet added in v1.0.1

func (NullableAadhaarxmlValidateOtp400ResponseDataProofOfIdentity) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400ResponseDataProofOfIdentity) Set added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400ResponseDataProofOfIdentity) UnmarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtp400ResponseDataProofOfIdentity) Unset added in v1.0.1

type NullableAadhaarxmlValidateOtpRequest

type NullableAadhaarxmlValidateOtpRequest struct {
	// contains filtered or unexported fields
}

func (NullableAadhaarxmlValidateOtpRequest) Get

func (NullableAadhaarxmlValidateOtpRequest) IsSet

func (NullableAadhaarxmlValidateOtpRequest) MarshalJSON

func (v NullableAadhaarxmlValidateOtpRequest) MarshalJSON() ([]byte, error)

func (*NullableAadhaarxmlValidateOtpRequest) Set

func (*NullableAadhaarxmlValidateOtpRequest) UnmarshalJSON

func (v *NullableAadhaarxmlValidateOtpRequest) UnmarshalJSON(src []byte) error

func (*NullableAadhaarxmlValidateOtpRequest) Unset

type NullableAadhaarxmlValidateOtpResponse added in v1.0.1

type NullableAadhaarxmlValidateOtpResponse struct {
	// contains filtered or unexported fields
}

func NewNullableAadhaarxmlValidateOtpResponse added in v1.0.1

func NewNullableAadhaarxmlValidateOtpResponse(val *AadhaarxmlValidateOtpResponse) *NullableAadhaarxmlValidateOtpResponse

func (NullableAadhaarxmlValidateOtpResponse) Get added in v1.0.1

func (NullableAadhaarxmlValidateOtpResponse) IsSet added in v1.0.1

func (NullableAadhaarxmlValidateOtpResponse) MarshalJSON added in v1.0.1

func (v NullableAadhaarxmlValidateOtpResponse) MarshalJSON() ([]byte, error)

func (*NullableAadhaarxmlValidateOtpResponse) Set added in v1.0.1

func (*NullableAadhaarxmlValidateOtpResponse) UnmarshalJSON added in v1.0.1

func (v *NullableAadhaarxmlValidateOtpResponse) UnmarshalJSON(src []byte) error

func (*NullableAadhaarxmlValidateOtpResponse) Unset added in v1.0.1

type NullableAadhaarxmlValidateOtpResponseData added in v1.0.1

type NullableAadhaarxmlValidateOtpResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableAadhaarxmlValidateOtpResponseData added in v1.0.1

func NewNullableAadhaarxmlValidateOtpResponseData(val *AadhaarxmlValidateOtpResponseData) *NullableAadhaarxmlValidateOtpResponseData

func (NullableAadhaarxmlValidateOtpResponseData) Get added in v1.0.1

func (NullableAadhaarxmlValidateOtpResponseData) IsSet added in v1.0.1

func (NullableAadhaarxmlValidateOtpResponseData) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtpResponseData) Set added in v1.0.1

func (*NullableAadhaarxmlValidateOtpResponseData) UnmarshalJSON added in v1.0.1

func (v *NullableAadhaarxmlValidateOtpResponseData) UnmarshalJSON(src []byte) error

func (*NullableAadhaarxmlValidateOtpResponseData) Unset added in v1.0.1

type NullableAadhaarxmlValidateOtpResponseDataAadhaarFile added in v1.0.1

type NullableAadhaarxmlValidateOtpResponseDataAadhaarFile struct {
	// contains filtered or unexported fields
}

func (NullableAadhaarxmlValidateOtpResponseDataAadhaarFile) Get added in v1.0.1

func (NullableAadhaarxmlValidateOtpResponseDataAadhaarFile) IsSet added in v1.0.1

func (NullableAadhaarxmlValidateOtpResponseDataAadhaarFile) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtpResponseDataAadhaarFile) Set added in v1.0.1

func (*NullableAadhaarxmlValidateOtpResponseDataAadhaarFile) UnmarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtpResponseDataAadhaarFile) Unset added in v1.0.1

type NullableAadhaarxmlValidateOtpResponseDataProofOfAddress added in v1.0.1

type NullableAadhaarxmlValidateOtpResponseDataProofOfAddress struct {
	// contains filtered or unexported fields
}

func (NullableAadhaarxmlValidateOtpResponseDataProofOfAddress) Get added in v1.0.1

func (NullableAadhaarxmlValidateOtpResponseDataProofOfAddress) IsSet added in v1.0.1

func (NullableAadhaarxmlValidateOtpResponseDataProofOfAddress) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtpResponseDataProofOfAddress) Set added in v1.0.1

func (*NullableAadhaarxmlValidateOtpResponseDataProofOfAddress) UnmarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtpResponseDataProofOfAddress) Unset added in v1.0.1

type NullableAadhaarxmlValidateOtpResponseDataProofOfIdentity added in v1.0.1

type NullableAadhaarxmlValidateOtpResponseDataProofOfIdentity struct {
	// contains filtered or unexported fields
}

func (NullableAadhaarxmlValidateOtpResponseDataProofOfIdentity) Get added in v1.0.1

func (NullableAadhaarxmlValidateOtpResponseDataProofOfIdentity) IsSet added in v1.0.1

func (NullableAadhaarxmlValidateOtpResponseDataProofOfIdentity) MarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtpResponseDataProofOfIdentity) Set added in v1.0.1

func (*NullableAadhaarxmlValidateOtpResponseDataProofOfIdentity) UnmarshalJSON added in v1.0.1

func (*NullableAadhaarxmlValidateOtpResponseDataProofOfIdentity) Unset added in v1.0.1

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCheckImageQuality400Response

type NullableCheckImageQuality400Response struct {
	// contains filtered or unexported fields
}

func (NullableCheckImageQuality400Response) Get

func (NullableCheckImageQuality400Response) IsSet

func (NullableCheckImageQuality400Response) MarshalJSON

func (v NullableCheckImageQuality400Response) MarshalJSON() ([]byte, error)

func (*NullableCheckImageQuality400Response) Set

func (*NullableCheckImageQuality400Response) UnmarshalJSON

func (v *NullableCheckImageQuality400Response) UnmarshalJSON(src []byte) error

func (*NullableCheckImageQuality400Response) Unset

type NullableCheckImageQualityRequest

type NullableCheckImageQualityRequest struct {
	// contains filtered or unexported fields
}

func (NullableCheckImageQualityRequest) Get

func (NullableCheckImageQualityRequest) IsSet

func (NullableCheckImageQualityRequest) MarshalJSON

func (v NullableCheckImageQualityRequest) MarshalJSON() ([]byte, error)

func (*NullableCheckImageQualityRequest) Set

func (*NullableCheckImageQualityRequest) UnmarshalJSON

func (v *NullableCheckImageQualityRequest) UnmarshalJSON(src []byte) error

func (*NullableCheckImageQualityRequest) Unset

type NullableCheckImageQualityResponse

type NullableCheckImageQualityResponse struct {
	// contains filtered or unexported fields
}

func (NullableCheckImageQualityResponse) Get

func (NullableCheckImageQualityResponse) IsSet

func (NullableCheckImageQualityResponse) MarshalJSON

func (v NullableCheckImageQualityResponse) MarshalJSON() ([]byte, error)

func (*NullableCheckImageQualityResponse) Set

func (*NullableCheckImageQualityResponse) UnmarshalJSON

func (v *NullableCheckImageQualityResponse) UnmarshalJSON(src []byte) error

func (*NullableCheckImageQualityResponse) Unset

type NullableCheckImageQualityResponseData

type NullableCheckImageQualityResponseData struct {
	// contains filtered or unexported fields
}

func (NullableCheckImageQualityResponseData) Get

func (NullableCheckImageQualityResponseData) IsSet

func (NullableCheckImageQualityResponseData) MarshalJSON

func (v NullableCheckImageQualityResponseData) MarshalJSON() ([]byte, error)

func (*NullableCheckImageQualityResponseData) Set

func (*NullableCheckImageQualityResponseData) UnmarshalJSON

func (v *NullableCheckImageQualityResponseData) UnmarshalJSON(src []byte) error

func (*NullableCheckImageQualityResponseData) Unset

type NullableCheckImageQualityResponseDataImageQuality

type NullableCheckImageQualityResponseDataImageQuality struct {
	// contains filtered or unexported fields
}

func (NullableCheckImageQualityResponseDataImageQuality) Get

func (NullableCheckImageQualityResponseDataImageQuality) IsSet

func (NullableCheckImageQualityResponseDataImageQuality) MarshalJSON

func (*NullableCheckImageQualityResponseDataImageQuality) Set

func (*NullableCheckImageQualityResponseDataImageQuality) UnmarshalJSON

func (*NullableCheckImageQualityResponseDataImageQuality) Unset

type NullableCheckImageQualityResponseDataImageQualityQualityScores

type NullableCheckImageQualityResponseDataImageQualityQualityScores struct {
	// contains filtered or unexported fields
}

func (NullableCheckImageQualityResponseDataImageQualityQualityScores) Get

func (NullableCheckImageQualityResponseDataImageQualityQualityScores) IsSet

func (NullableCheckImageQualityResponseDataImageQualityQualityScores) MarshalJSON

func (*NullableCheckImageQualityResponseDataImageQualityQualityScores) Set

func (*NullableCheckImageQualityResponseDataImageQualityQualityScores) UnmarshalJSON

func (*NullableCheckImageQualityResponseDataImageQualityQualityScores) Unset

type NullableCheckImageQualityResponseDataImageQualityQualityScoresBrightness

type NullableCheckImageQualityResponseDataImageQualityQualityScoresBrightness struct {
	// contains filtered or unexported fields
}

func (NullableCheckImageQualityResponseDataImageQualityQualityScoresBrightness) Get

func (NullableCheckImageQualityResponseDataImageQualityQualityScoresBrightness) IsSet

func (NullableCheckImageQualityResponseDataImageQualityQualityScoresBrightness) MarshalJSON

func (*NullableCheckImageQualityResponseDataImageQualityQualityScoresBrightness) Set

func (*NullableCheckImageQualityResponseDataImageQualityQualityScoresBrightness) UnmarshalJSON

func (*NullableCheckImageQualityResponseDataImageQualityQualityScoresBrightness) Unset

type NullableCheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality

type NullableCheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality struct {
	// contains filtered or unexported fields
}

func (NullableCheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) Get

func (NullableCheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) IsSet

func (NullableCheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) MarshalJSON

func (*NullableCheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) Set

func (*NullableCheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) UnmarshalJSON

func (*NullableCheckImageQualityResponseDataImageQualityQualityScoresCompressionQuality) Unset

type NullableCheckImageQualityResponseDataImageQualityQualityScoresSharpness

type NullableCheckImageQualityResponseDataImageQualityQualityScoresSharpness struct {
	// contains filtered or unexported fields
}

func (NullableCheckImageQualityResponseDataImageQualityQualityScoresSharpness) Get

func (NullableCheckImageQualityResponseDataImageQualityQualityScoresSharpness) IsSet

func (NullableCheckImageQualityResponseDataImageQualityQualityScoresSharpness) MarshalJSON

func (*NullableCheckImageQualityResponseDataImageQualityQualityScoresSharpness) Set

func (*NullableCheckImageQualityResponseDataImageQualityQualityScoresSharpness) UnmarshalJSON

func (*NullableCheckImageQualityResponseDataImageQualityQualityScoresSharpness) Unset

type NullableCheckImageQualityResponseDataImageQualityQualityScoresTextQuality

type NullableCheckImageQualityResponseDataImageQualityQualityScoresTextQuality struct {
	// contains filtered or unexported fields
}

func (NullableCheckImageQualityResponseDataImageQualityQualityScoresTextQuality) Get

func (NullableCheckImageQualityResponseDataImageQualityQualityScoresTextQuality) IsSet

func (NullableCheckImageQualityResponseDataImageQualityQualityScoresTextQuality) MarshalJSON

func (*NullableCheckImageQualityResponseDataImageQualityQualityScoresTextQuality) Set

func (*NullableCheckImageQualityResponseDataImageQualityQualityScoresTextQuality) UnmarshalJSON

func (*NullableCheckImageQualityResponseDataImageQualityQualityScoresTextQuality) Unset

type NullableCheckPhotocopy400Response

type NullableCheckPhotocopy400Response struct {
	// contains filtered or unexported fields
}

func (NullableCheckPhotocopy400Response) Get

func (NullableCheckPhotocopy400Response) IsSet

func (NullableCheckPhotocopy400Response) MarshalJSON

func (v NullableCheckPhotocopy400Response) MarshalJSON() ([]byte, error)

func (*NullableCheckPhotocopy400Response) Set

func (*NullableCheckPhotocopy400Response) UnmarshalJSON

func (v *NullableCheckPhotocopy400Response) UnmarshalJSON(src []byte) error

func (*NullableCheckPhotocopy400Response) Unset

type NullableCheckPhotocopyRequest

type NullableCheckPhotocopyRequest struct {
	// contains filtered or unexported fields
}

func (NullableCheckPhotocopyRequest) Get

func (NullableCheckPhotocopyRequest) IsSet

func (NullableCheckPhotocopyRequest) MarshalJSON

func (v NullableCheckPhotocopyRequest) MarshalJSON() ([]byte, error)

func (*NullableCheckPhotocopyRequest) Set

func (*NullableCheckPhotocopyRequest) UnmarshalJSON

func (v *NullableCheckPhotocopyRequest) UnmarshalJSON(src []byte) error

func (*NullableCheckPhotocopyRequest) Unset

func (v *NullableCheckPhotocopyRequest) Unset()

type NullableCheckPhotocopyResponse

type NullableCheckPhotocopyResponse struct {
	// contains filtered or unexported fields
}

func (NullableCheckPhotocopyResponse) Get

func (NullableCheckPhotocopyResponse) IsSet

func (NullableCheckPhotocopyResponse) MarshalJSON

func (v NullableCheckPhotocopyResponse) MarshalJSON() ([]byte, error)

func (*NullableCheckPhotocopyResponse) Set

func (*NullableCheckPhotocopyResponse) UnmarshalJSON

func (v *NullableCheckPhotocopyResponse) UnmarshalJSON(src []byte) error

func (*NullableCheckPhotocopyResponse) Unset

func (v *NullableCheckPhotocopyResponse) Unset()

type NullableCheckPhotocopyResponseData

type NullableCheckPhotocopyResponseData struct {
	// contains filtered or unexported fields
}

func (NullableCheckPhotocopyResponseData) Get

func (NullableCheckPhotocopyResponseData) IsSet

func (NullableCheckPhotocopyResponseData) MarshalJSON

func (v NullableCheckPhotocopyResponseData) MarshalJSON() ([]byte, error)

func (*NullableCheckPhotocopyResponseData) Set

func (*NullableCheckPhotocopyResponseData) UnmarshalJSON

func (v *NullableCheckPhotocopyResponseData) UnmarshalJSON(src []byte) error

func (*NullableCheckPhotocopyResponseData) Unset

type NullableCheckVideoLiveness400Response

type NullableCheckVideoLiveness400Response struct {
	// contains filtered or unexported fields
}

func (NullableCheckVideoLiveness400Response) Get

func (NullableCheckVideoLiveness400Response) IsSet

func (NullableCheckVideoLiveness400Response) MarshalJSON

func (v NullableCheckVideoLiveness400Response) MarshalJSON() ([]byte, error)

func (*NullableCheckVideoLiveness400Response) Set

func (*NullableCheckVideoLiveness400Response) UnmarshalJSON

func (v *NullableCheckVideoLiveness400Response) UnmarshalJSON(src []byte) error

func (*NullableCheckVideoLiveness400Response) Unset

type NullableCheckVideoLivenessRequest

type NullableCheckVideoLivenessRequest struct {
	// contains filtered or unexported fields
}

func (NullableCheckVideoLivenessRequest) Get

func (NullableCheckVideoLivenessRequest) IsSet

func (NullableCheckVideoLivenessRequest) MarshalJSON

func (v NullableCheckVideoLivenessRequest) MarshalJSON() ([]byte, error)

func (*NullableCheckVideoLivenessRequest) Set

func (*NullableCheckVideoLivenessRequest) UnmarshalJSON

func (v *NullableCheckVideoLivenessRequest) UnmarshalJSON(src []byte) error

func (*NullableCheckVideoLivenessRequest) Unset

type NullableCheckVideoLivenessResponse

type NullableCheckVideoLivenessResponse struct {
	// contains filtered or unexported fields
}

func (NullableCheckVideoLivenessResponse) Get

func (NullableCheckVideoLivenessResponse) IsSet

func (NullableCheckVideoLivenessResponse) MarshalJSON

func (v NullableCheckVideoLivenessResponse) MarshalJSON() ([]byte, error)

func (*NullableCheckVideoLivenessResponse) Set

func (*NullableCheckVideoLivenessResponse) UnmarshalJSON

func (v *NullableCheckVideoLivenessResponse) UnmarshalJSON(src []byte) error

func (*NullableCheckVideoLivenessResponse) Unset

type NullableCheckVideoLivenessResponseData

type NullableCheckVideoLivenessResponseData struct {
	// contains filtered or unexported fields
}

func (NullableCheckVideoLivenessResponseData) Get

func (NullableCheckVideoLivenessResponseData) IsSet

func (NullableCheckVideoLivenessResponseData) MarshalJSON

func (v NullableCheckVideoLivenessResponseData) MarshalJSON() ([]byte, error)

func (*NullableCheckVideoLivenessResponseData) Set

func (*NullableCheckVideoLivenessResponseData) UnmarshalJSON

func (v *NullableCheckVideoLivenessResponseData) UnmarshalJSON(src []byte) error

func (*NullableCheckVideoLivenessResponseData) Unset

type NullableClassifyDocument400Response

type NullableClassifyDocument400Response struct {
	// contains filtered or unexported fields
}

func (NullableClassifyDocument400Response) Get

func (NullableClassifyDocument400Response) IsSet

func (NullableClassifyDocument400Response) MarshalJSON

func (v NullableClassifyDocument400Response) MarshalJSON() ([]byte, error)

func (*NullableClassifyDocument400Response) Set

func (*NullableClassifyDocument400Response) UnmarshalJSON

func (v *NullableClassifyDocument400Response) UnmarshalJSON(src []byte) error

func (*NullableClassifyDocument400Response) Unset

type NullableClassifyDocumentRequest

type NullableClassifyDocumentRequest struct {
	// contains filtered or unexported fields
}

func (NullableClassifyDocumentRequest) Get

func (NullableClassifyDocumentRequest) IsSet

func (NullableClassifyDocumentRequest) MarshalJSON

func (v NullableClassifyDocumentRequest) MarshalJSON() ([]byte, error)

func (*NullableClassifyDocumentRequest) Set

func (*NullableClassifyDocumentRequest) UnmarshalJSON

func (v *NullableClassifyDocumentRequest) UnmarshalJSON(src []byte) error

func (*NullableClassifyDocumentRequest) Unset

type NullableClassifyDocumentResponse

type NullableClassifyDocumentResponse struct {
	// contains filtered or unexported fields
}

func (NullableClassifyDocumentResponse) Get

func (NullableClassifyDocumentResponse) IsSet

func (NullableClassifyDocumentResponse) MarshalJSON

func (v NullableClassifyDocumentResponse) MarshalJSON() ([]byte, error)

func (*NullableClassifyDocumentResponse) Set

func (*NullableClassifyDocumentResponse) UnmarshalJSON

func (v *NullableClassifyDocumentResponse) UnmarshalJSON(src []byte) error

func (*NullableClassifyDocumentResponse) Unset

type NullableClassifyDocumentResponseData

type NullableClassifyDocumentResponseData struct {
	// contains filtered or unexported fields
}

func (NullableClassifyDocumentResponseData) Get

func (NullableClassifyDocumentResponseData) IsSet

func (NullableClassifyDocumentResponseData) MarshalJSON

func (v NullableClassifyDocumentResponseData) MarshalJSON() ([]byte, error)

func (*NullableClassifyDocumentResponseData) Set

func (*NullableClassifyDocumentResponseData) UnmarshalJSON

func (v *NullableClassifyDocumentResponseData) UnmarshalJSON(src []byte) error

func (*NullableClassifyDocumentResponseData) Unset

type NullableDigilockerDownloadFile400Response added in v1.0.1

type NullableDigilockerDownloadFile400Response struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerDownloadFile400Response added in v1.0.1

func NewNullableDigilockerDownloadFile400Response(val *DigilockerDownloadFile400Response) *NullableDigilockerDownloadFile400Response

func (NullableDigilockerDownloadFile400Response) Get added in v1.0.1

func (NullableDigilockerDownloadFile400Response) IsSet added in v1.0.1

func (NullableDigilockerDownloadFile400Response) MarshalJSON added in v1.0.1

func (*NullableDigilockerDownloadFile400Response) Set added in v1.0.1

func (*NullableDigilockerDownloadFile400Response) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerDownloadFile400Response) UnmarshalJSON(src []byte) error

func (*NullableDigilockerDownloadFile400Response) Unset added in v1.0.1

type NullableDigilockerDownloadFile400ResponseData added in v1.0.1

type NullableDigilockerDownloadFile400ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerDownloadFile400ResponseData) Get added in v1.0.1

func (NullableDigilockerDownloadFile400ResponseData) IsSet added in v1.0.1

func (NullableDigilockerDownloadFile400ResponseData) MarshalJSON added in v1.0.1

func (*NullableDigilockerDownloadFile400ResponseData) Set added in v1.0.1

func (*NullableDigilockerDownloadFile400ResponseData) UnmarshalJSON added in v1.0.1

func (*NullableDigilockerDownloadFile400ResponseData) Unset added in v1.0.1

type NullableDigilockerDownloadFileRequest

type NullableDigilockerDownloadFileRequest struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerDownloadFileRequest) Get

func (NullableDigilockerDownloadFileRequest) IsSet

func (NullableDigilockerDownloadFileRequest) MarshalJSON

func (v NullableDigilockerDownloadFileRequest) MarshalJSON() ([]byte, error)

func (*NullableDigilockerDownloadFileRequest) Set

func (*NullableDigilockerDownloadFileRequest) UnmarshalJSON

func (v *NullableDigilockerDownloadFileRequest) UnmarshalJSON(src []byte) error

func (*NullableDigilockerDownloadFileRequest) Unset

type NullableDigilockerDownloadFileResponse added in v1.0.1

type NullableDigilockerDownloadFileResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerDownloadFileResponse added in v1.0.1

func NewNullableDigilockerDownloadFileResponse(val *DigilockerDownloadFileResponse) *NullableDigilockerDownloadFileResponse

func (NullableDigilockerDownloadFileResponse) Get added in v1.0.1

func (NullableDigilockerDownloadFileResponse) IsSet added in v1.0.1

func (NullableDigilockerDownloadFileResponse) MarshalJSON added in v1.0.1

func (v NullableDigilockerDownloadFileResponse) MarshalJSON() ([]byte, error)

func (*NullableDigilockerDownloadFileResponse) Set added in v1.0.1

func (*NullableDigilockerDownloadFileResponse) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerDownloadFileResponse) UnmarshalJSON(src []byte) error

func (*NullableDigilockerDownloadFileResponse) Unset added in v1.0.1

type NullableDigilockerDownloadFileResponseData added in v1.0.1

type NullableDigilockerDownloadFileResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerDownloadFileResponseData added in v1.0.1

func NewNullableDigilockerDownloadFileResponseData(val *DigilockerDownloadFileResponseData) *NullableDigilockerDownloadFileResponseData

func (NullableDigilockerDownloadFileResponseData) Get added in v1.0.1

func (NullableDigilockerDownloadFileResponseData) IsSet added in v1.0.1

func (NullableDigilockerDownloadFileResponseData) MarshalJSON added in v1.0.1

func (*NullableDigilockerDownloadFileResponseData) Set added in v1.0.1

func (*NullableDigilockerDownloadFileResponseData) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerDownloadFileResponseData) UnmarshalJSON(src []byte) error

func (*NullableDigilockerDownloadFileResponseData) Unset added in v1.0.1

type NullableDigilockerEAadhaar400Response added in v1.0.1

type NullableDigilockerEAadhaar400Response struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerEAadhaar400Response added in v1.0.1

func NewNullableDigilockerEAadhaar400Response(val *DigilockerEAadhaar400Response) *NullableDigilockerEAadhaar400Response

func (NullableDigilockerEAadhaar400Response) Get added in v1.0.1

func (NullableDigilockerEAadhaar400Response) IsSet added in v1.0.1

func (NullableDigilockerEAadhaar400Response) MarshalJSON added in v1.0.1

func (v NullableDigilockerEAadhaar400Response) MarshalJSON() ([]byte, error)

func (*NullableDigilockerEAadhaar400Response) Set added in v1.0.1

func (*NullableDigilockerEAadhaar400Response) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerEAadhaar400Response) UnmarshalJSON(src []byte) error

func (*NullableDigilockerEAadhaar400Response) Unset added in v1.0.1

type NullableDigilockerEAadhaarRequest

type NullableDigilockerEAadhaarRequest struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerEAadhaarRequest) Get

func (NullableDigilockerEAadhaarRequest) IsSet

func (NullableDigilockerEAadhaarRequest) MarshalJSON

func (v NullableDigilockerEAadhaarRequest) MarshalJSON() ([]byte, error)

func (*NullableDigilockerEAadhaarRequest) Set

func (*NullableDigilockerEAadhaarRequest) UnmarshalJSON

func (v *NullableDigilockerEAadhaarRequest) UnmarshalJSON(src []byte) error

func (*NullableDigilockerEAadhaarRequest) Unset

type NullableDigilockerEAadhaarResponse added in v1.0.1

type NullableDigilockerEAadhaarResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerEAadhaarResponse added in v1.0.1

func NewNullableDigilockerEAadhaarResponse(val *DigilockerEAadhaarResponse) *NullableDigilockerEAadhaarResponse

func (NullableDigilockerEAadhaarResponse) Get added in v1.0.1

func (NullableDigilockerEAadhaarResponse) IsSet added in v1.0.1

func (NullableDigilockerEAadhaarResponse) MarshalJSON added in v1.0.1

func (v NullableDigilockerEAadhaarResponse) MarshalJSON() ([]byte, error)

func (*NullableDigilockerEAadhaarResponse) Set added in v1.0.1

func (*NullableDigilockerEAadhaarResponse) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerEAadhaarResponse) UnmarshalJSON(src []byte) error

func (*NullableDigilockerEAadhaarResponse) Unset added in v1.0.1

type NullableDigilockerEAadhaarResponseData added in v1.0.1

type NullableDigilockerEAadhaarResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerEAadhaarResponseData added in v1.0.1

func NewNullableDigilockerEAadhaarResponseData(val *DigilockerEAadhaarResponseData) *NullableDigilockerEAadhaarResponseData

func (NullableDigilockerEAadhaarResponseData) Get added in v1.0.1

func (NullableDigilockerEAadhaarResponseData) IsSet added in v1.0.1

func (NullableDigilockerEAadhaarResponseData) MarshalJSON added in v1.0.1

func (v NullableDigilockerEAadhaarResponseData) MarshalJSON() ([]byte, error)

func (*NullableDigilockerEAadhaarResponseData) Set added in v1.0.1

func (*NullableDigilockerEAadhaarResponseData) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerEAadhaarResponseData) UnmarshalJSON(src []byte) error

func (*NullableDigilockerEAadhaarResponseData) Unset added in v1.0.1

type NullableDigilockerEAadhaarResponseDataProofOfAddress added in v1.0.1

type NullableDigilockerEAadhaarResponseDataProofOfAddress struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerEAadhaarResponseDataProofOfAddress) Get added in v1.0.1

func (NullableDigilockerEAadhaarResponseDataProofOfAddress) IsSet added in v1.0.1

func (NullableDigilockerEAadhaarResponseDataProofOfAddress) MarshalJSON added in v1.0.1

func (*NullableDigilockerEAadhaarResponseDataProofOfAddress) Set added in v1.0.1

func (*NullableDigilockerEAadhaarResponseDataProofOfAddress) UnmarshalJSON added in v1.0.1

func (*NullableDigilockerEAadhaarResponseDataProofOfAddress) Unset added in v1.0.1

type NullableDigilockerEAadhaarResponseDataProofOfIdentity added in v1.0.1

type NullableDigilockerEAadhaarResponseDataProofOfIdentity struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerEAadhaarResponseDataProofOfIdentity) Get added in v1.0.1

func (NullableDigilockerEAadhaarResponseDataProofOfIdentity) IsSet added in v1.0.1

func (NullableDigilockerEAadhaarResponseDataProofOfIdentity) MarshalJSON added in v1.0.1

func (*NullableDigilockerEAadhaarResponseDataProofOfIdentity) Set added in v1.0.1

func (*NullableDigilockerEAadhaarResponseDataProofOfIdentity) UnmarshalJSON added in v1.0.1

func (*NullableDigilockerEAadhaarResponseDataProofOfIdentity) Unset added in v1.0.1

type NullableDigilockerFileData400Response added in v1.0.1

type NullableDigilockerFileData400Response struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerFileData400Response added in v1.0.1

func NewNullableDigilockerFileData400Response(val *DigilockerFileData400Response) *NullableDigilockerFileData400Response

func (NullableDigilockerFileData400Response) Get added in v1.0.1

func (NullableDigilockerFileData400Response) IsSet added in v1.0.1

func (NullableDigilockerFileData400Response) MarshalJSON added in v1.0.1

func (v NullableDigilockerFileData400Response) MarshalJSON() ([]byte, error)

func (*NullableDigilockerFileData400Response) Set added in v1.0.1

func (*NullableDigilockerFileData400Response) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerFileData400Response) UnmarshalJSON(src []byte) error

func (*NullableDigilockerFileData400Response) Unset added in v1.0.1

type NullableDigilockerFileData400ResponseData added in v1.0.1

type NullableDigilockerFileData400ResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerFileData400ResponseData added in v1.0.1

func NewNullableDigilockerFileData400ResponseData(val *DigilockerFileData400ResponseData) *NullableDigilockerFileData400ResponseData

func (NullableDigilockerFileData400ResponseData) Get added in v1.0.1

func (NullableDigilockerFileData400ResponseData) IsSet added in v1.0.1

func (NullableDigilockerFileData400ResponseData) MarshalJSON added in v1.0.1

func (*NullableDigilockerFileData400ResponseData) Set added in v1.0.1

func (*NullableDigilockerFileData400ResponseData) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerFileData400ResponseData) UnmarshalJSON(src []byte) error

func (*NullableDigilockerFileData400ResponseData) Unset added in v1.0.1

type NullableDigilockerFileDataRequest

type NullableDigilockerFileDataRequest struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerFileDataRequest) Get

func (NullableDigilockerFileDataRequest) IsSet

func (NullableDigilockerFileDataRequest) MarshalJSON

func (v NullableDigilockerFileDataRequest) MarshalJSON() ([]byte, error)

func (*NullableDigilockerFileDataRequest) Set

func (*NullableDigilockerFileDataRequest) UnmarshalJSON

func (v *NullableDigilockerFileDataRequest) UnmarshalJSON(src []byte) error

func (*NullableDigilockerFileDataRequest) Unset

type NullableDigilockerFileDataResponse added in v1.0.1

type NullableDigilockerFileDataResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerFileDataResponse added in v1.0.1

func NewNullableDigilockerFileDataResponse(val *DigilockerFileDataResponse) *NullableDigilockerFileDataResponse

func (NullableDigilockerFileDataResponse) Get added in v1.0.1

func (NullableDigilockerFileDataResponse) IsSet added in v1.0.1

func (NullableDigilockerFileDataResponse) MarshalJSON added in v1.0.1

func (v NullableDigilockerFileDataResponse) MarshalJSON() ([]byte, error)

func (*NullableDigilockerFileDataResponse) Set added in v1.0.1

func (*NullableDigilockerFileDataResponse) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerFileDataResponse) UnmarshalJSON(src []byte) error

func (*NullableDigilockerFileDataResponse) Unset added in v1.0.1

type NullableDigilockerFileDataResponseData added in v1.0.1

type NullableDigilockerFileDataResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerFileDataResponseData added in v1.0.1

func NewNullableDigilockerFileDataResponseData(val *DigilockerFileDataResponseData) *NullableDigilockerFileDataResponseData

func (NullableDigilockerFileDataResponseData) Get added in v1.0.1

func (NullableDigilockerFileDataResponseData) IsSet added in v1.0.1

func (NullableDigilockerFileDataResponseData) MarshalJSON added in v1.0.1

func (v NullableDigilockerFileDataResponseData) MarshalJSON() ([]byte, error)

func (*NullableDigilockerFileDataResponseData) Set added in v1.0.1

func (*NullableDigilockerFileDataResponseData) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerFileDataResponseData) UnmarshalJSON(src []byte) error

func (*NullableDigilockerFileDataResponseData) Unset added in v1.0.1

type NullableDigilockerGenerateAccessToken400Response added in v1.0.1

type NullableDigilockerGenerateAccessToken400Response struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerGenerateAccessToken400Response) Get added in v1.0.1

func (NullableDigilockerGenerateAccessToken400Response) IsSet added in v1.0.1

func (NullableDigilockerGenerateAccessToken400Response) MarshalJSON added in v1.0.1

func (*NullableDigilockerGenerateAccessToken400Response) Set added in v1.0.1

func (*NullableDigilockerGenerateAccessToken400Response) UnmarshalJSON added in v1.0.1

func (*NullableDigilockerGenerateAccessToken400Response) Unset added in v1.0.1

type NullableDigilockerGenerateAccessTokenRequest

type NullableDigilockerGenerateAccessTokenRequest struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerGenerateAccessTokenRequest) Get

func (NullableDigilockerGenerateAccessTokenRequest) IsSet

func (NullableDigilockerGenerateAccessTokenRequest) MarshalJSON

func (*NullableDigilockerGenerateAccessTokenRequest) Set

func (*NullableDigilockerGenerateAccessTokenRequest) UnmarshalJSON

func (*NullableDigilockerGenerateAccessTokenRequest) Unset

type NullableDigilockerGenerateAccessTokenResponse added in v1.0.1

type NullableDigilockerGenerateAccessTokenResponse struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerGenerateAccessTokenResponse) Get added in v1.0.1

func (NullableDigilockerGenerateAccessTokenResponse) IsSet added in v1.0.1

func (NullableDigilockerGenerateAccessTokenResponse) MarshalJSON added in v1.0.1

func (*NullableDigilockerGenerateAccessTokenResponse) Set added in v1.0.1

func (*NullableDigilockerGenerateAccessTokenResponse) UnmarshalJSON added in v1.0.1

func (*NullableDigilockerGenerateAccessTokenResponse) Unset added in v1.0.1

type NullableDigilockerGenerateAccessTokenResponseData added in v1.0.1

type NullableDigilockerGenerateAccessTokenResponseData struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerGenerateAccessTokenResponseData) Get added in v1.0.1

func (NullableDigilockerGenerateAccessTokenResponseData) IsSet added in v1.0.1

func (NullableDigilockerGenerateAccessTokenResponseData) MarshalJSON added in v1.0.1

func (*NullableDigilockerGenerateAccessTokenResponseData) Set added in v1.0.1

func (*NullableDigilockerGenerateAccessTokenResponseData) UnmarshalJSON added in v1.0.1

func (*NullableDigilockerGenerateAccessTokenResponseData) Unset added in v1.0.1

type NullableDigilockerInitiateSession400Response added in v1.0.1

type NullableDigilockerInitiateSession400Response struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerInitiateSession400Response added in v1.0.1

func NewNullableDigilockerInitiateSession400Response(val *DigilockerInitiateSession400Response) *NullableDigilockerInitiateSession400Response

func (NullableDigilockerInitiateSession400Response) Get added in v1.0.1

func (NullableDigilockerInitiateSession400Response) IsSet added in v1.0.1

func (NullableDigilockerInitiateSession400Response) MarshalJSON added in v1.0.1

func (*NullableDigilockerInitiateSession400Response) Set added in v1.0.1

func (*NullableDigilockerInitiateSession400Response) UnmarshalJSON added in v1.0.1

func (*NullableDigilockerInitiateSession400Response) Unset added in v1.0.1

type NullableDigilockerInitiateSessionRequest

type NullableDigilockerInitiateSessionRequest struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerInitiateSessionRequest) Get

func (NullableDigilockerInitiateSessionRequest) IsSet

func (NullableDigilockerInitiateSessionRequest) MarshalJSON

func (*NullableDigilockerInitiateSessionRequest) Set

func (*NullableDigilockerInitiateSessionRequest) UnmarshalJSON

func (v *NullableDigilockerInitiateSessionRequest) UnmarshalJSON(src []byte) error

func (*NullableDigilockerInitiateSessionRequest) Unset

type NullableDigilockerInitiateSessionResponse added in v1.0.1

type NullableDigilockerInitiateSessionResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerInitiateSessionResponse added in v1.0.1

func NewNullableDigilockerInitiateSessionResponse(val *DigilockerInitiateSessionResponse) *NullableDigilockerInitiateSessionResponse

func (NullableDigilockerInitiateSessionResponse) Get added in v1.0.1

func (NullableDigilockerInitiateSessionResponse) IsSet added in v1.0.1

func (NullableDigilockerInitiateSessionResponse) MarshalJSON added in v1.0.1

func (*NullableDigilockerInitiateSessionResponse) Set added in v1.0.1

func (*NullableDigilockerInitiateSessionResponse) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerInitiateSessionResponse) UnmarshalJSON(src []byte) error

func (*NullableDigilockerInitiateSessionResponse) Unset added in v1.0.1

type NullableDigilockerInitiateSessionResponseData added in v1.0.1

type NullableDigilockerInitiateSessionResponseData struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerInitiateSessionResponseData) Get added in v1.0.1

func (NullableDigilockerInitiateSessionResponseData) IsSet added in v1.0.1

func (NullableDigilockerInitiateSessionResponseData) MarshalJSON added in v1.0.1

func (*NullableDigilockerInitiateSessionResponseData) Set added in v1.0.1

func (*NullableDigilockerInitiateSessionResponseData) UnmarshalJSON added in v1.0.1

func (*NullableDigilockerInitiateSessionResponseData) Unset added in v1.0.1

type NullableDigilockerIssuedFiles400Response added in v1.0.1

type NullableDigilockerIssuedFiles400Response struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerIssuedFiles400Response added in v1.0.1

func NewNullableDigilockerIssuedFiles400Response(val *DigilockerIssuedFiles400Response) *NullableDigilockerIssuedFiles400Response

func (NullableDigilockerIssuedFiles400Response) Get added in v1.0.1

func (NullableDigilockerIssuedFiles400Response) IsSet added in v1.0.1

func (NullableDigilockerIssuedFiles400Response) MarshalJSON added in v1.0.1

func (*NullableDigilockerIssuedFiles400Response) Set added in v1.0.1

func (*NullableDigilockerIssuedFiles400Response) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerIssuedFiles400Response) UnmarshalJSON(src []byte) error

func (*NullableDigilockerIssuedFiles400Response) Unset added in v1.0.1

type NullableDigilockerIssuedFiles400ResponseDataInner added in v1.0.1

type NullableDigilockerIssuedFiles400ResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerIssuedFiles400ResponseDataInner) Get added in v1.0.1

func (NullableDigilockerIssuedFiles400ResponseDataInner) IsSet added in v1.0.1

func (NullableDigilockerIssuedFiles400ResponseDataInner) MarshalJSON added in v1.0.1

func (*NullableDigilockerIssuedFiles400ResponseDataInner) Set added in v1.0.1

func (*NullableDigilockerIssuedFiles400ResponseDataInner) UnmarshalJSON added in v1.0.1

func (*NullableDigilockerIssuedFiles400ResponseDataInner) Unset added in v1.0.1

type NullableDigilockerIssuedFilesRequest

type NullableDigilockerIssuedFilesRequest struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerIssuedFilesRequest) Get

func (NullableDigilockerIssuedFilesRequest) IsSet

func (NullableDigilockerIssuedFilesRequest) MarshalJSON

func (v NullableDigilockerIssuedFilesRequest) MarshalJSON() ([]byte, error)

func (*NullableDigilockerIssuedFilesRequest) Set

func (*NullableDigilockerIssuedFilesRequest) UnmarshalJSON

func (v *NullableDigilockerIssuedFilesRequest) UnmarshalJSON(src []byte) error

func (*NullableDigilockerIssuedFilesRequest) Unset

type NullableDigilockerIssuedFilesResponse added in v1.0.1

type NullableDigilockerIssuedFilesResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerIssuedFilesResponse added in v1.0.1

func NewNullableDigilockerIssuedFilesResponse(val *DigilockerIssuedFilesResponse) *NullableDigilockerIssuedFilesResponse

func (NullableDigilockerIssuedFilesResponse) Get added in v1.0.1

func (NullableDigilockerIssuedFilesResponse) IsSet added in v1.0.1

func (NullableDigilockerIssuedFilesResponse) MarshalJSON added in v1.0.1

func (v NullableDigilockerIssuedFilesResponse) MarshalJSON() ([]byte, error)

func (*NullableDigilockerIssuedFilesResponse) Set added in v1.0.1

func (*NullableDigilockerIssuedFilesResponse) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerIssuedFilesResponse) UnmarshalJSON(src []byte) error

func (*NullableDigilockerIssuedFilesResponse) Unset added in v1.0.1

type NullableDigilockerIssuedFilesResponseDataInner added in v1.0.1

type NullableDigilockerIssuedFilesResponseDataInner struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerIssuedFilesResponseDataInner) Get added in v1.0.1

func (NullableDigilockerIssuedFilesResponseDataInner) IsSet added in v1.0.1

func (NullableDigilockerIssuedFilesResponseDataInner) MarshalJSON added in v1.0.1

func (*NullableDigilockerIssuedFilesResponseDataInner) Set added in v1.0.1

func (*NullableDigilockerIssuedFilesResponseDataInner) UnmarshalJSON added in v1.0.1

func (*NullableDigilockerIssuedFilesResponseDataInner) Unset added in v1.0.1

type NullableDigilockerPullFile400Response added in v1.0.1

type NullableDigilockerPullFile400Response struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerPullFile400Response added in v1.0.1

func NewNullableDigilockerPullFile400Response(val *DigilockerPullFile400Response) *NullableDigilockerPullFile400Response

func (NullableDigilockerPullFile400Response) Get added in v1.0.1

func (NullableDigilockerPullFile400Response) IsSet added in v1.0.1

func (NullableDigilockerPullFile400Response) MarshalJSON added in v1.0.1

func (v NullableDigilockerPullFile400Response) MarshalJSON() ([]byte, error)

func (*NullableDigilockerPullFile400Response) Set added in v1.0.1

func (*NullableDigilockerPullFile400Response) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerPullFile400Response) UnmarshalJSON(src []byte) error

func (*NullableDigilockerPullFile400Response) Unset added in v1.0.1

type NullableDigilockerPullFileRequest

type NullableDigilockerPullFileRequest struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerPullFileRequest) Get

func (NullableDigilockerPullFileRequest) IsSet

func (NullableDigilockerPullFileRequest) MarshalJSON

func (v NullableDigilockerPullFileRequest) MarshalJSON() ([]byte, error)

func (*NullableDigilockerPullFileRequest) Set

func (*NullableDigilockerPullFileRequest) UnmarshalJSON

func (v *NullableDigilockerPullFileRequest) UnmarshalJSON(src []byte) error

func (*NullableDigilockerPullFileRequest) Unset

type NullableDigilockerPullFileRequestDocumentTypeRelatedParameters

type NullableDigilockerPullFileRequestDocumentTypeRelatedParameters struct {
	// contains filtered or unexported fields
}

func (NullableDigilockerPullFileRequestDocumentTypeRelatedParameters) Get

func (NullableDigilockerPullFileRequestDocumentTypeRelatedParameters) IsSet

func (NullableDigilockerPullFileRequestDocumentTypeRelatedParameters) MarshalJSON

func (*NullableDigilockerPullFileRequestDocumentTypeRelatedParameters) Set

func (*NullableDigilockerPullFileRequestDocumentTypeRelatedParameters) UnmarshalJSON

func (*NullableDigilockerPullFileRequestDocumentTypeRelatedParameters) Unset

type NullableDigilockerPullFileResponse added in v1.0.1

type NullableDigilockerPullFileResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerPullFileResponse added in v1.0.1

func NewNullableDigilockerPullFileResponse(val *DigilockerPullFileResponse) *NullableDigilockerPullFileResponse

func (NullableDigilockerPullFileResponse) Get added in v1.0.1

func (NullableDigilockerPullFileResponse) IsSet added in v1.0.1

func (NullableDigilockerPullFileResponse) MarshalJSON added in v1.0.1

func (v NullableDigilockerPullFileResponse) MarshalJSON() ([]byte, error)

func (*NullableDigilockerPullFileResponse) Set added in v1.0.1

func (*NullableDigilockerPullFileResponse) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerPullFileResponse) UnmarshalJSON(src []byte) error

func (*NullableDigilockerPullFileResponse) Unset added in v1.0.1

type NullableDigilockerRevokeToken400Response added in v1.0.1

type NullableDigilockerRevokeToken400Response struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerRevokeToken400Response added in v1.0.1

func NewNullableDigilockerRevokeToken400Response(val *DigilockerRevokeToken400Response) *NullableDigilockerRevokeToken400Response

func (NullableDigilockerRevokeToken400Response) Get added in v1.0.1

func (NullableDigilockerRevokeToken400Response) IsSet added in v1.0.1

func (NullableDigilockerRevokeToken400Response) MarshalJSON added in v1.0.1

func (*NullableDigilockerRevokeToken400Response) Set added in v1.0.1

func (*NullableDigilockerRevokeToken400Response) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerRevokeToken400Response) UnmarshalJSON(src []byte) error

func (*NullableDigilockerRevokeToken400Response) Unset added in v1.0.1

type NullableDigilockerRevokeToken400ResponseData added in v1.0.1

type NullableDigilockerRevokeToken400ResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerRevokeToken400ResponseData added in v1.0.1

func NewNullableDigilockerRevokeToken400ResponseData(val *DigilockerRevokeToken400ResponseData) *NullableDigilockerRevokeToken400ResponseData

func (NullableDigilockerRevokeToken400ResponseData) Get added in v1.0.1

func (NullableDigilockerRevokeToken400ResponseData) IsSet added in v1.0.1

func (NullableDigilockerRevokeToken400ResponseData) MarshalJSON added in v1.0.1

func (*NullableDigilockerRevokeToken400ResponseData) Set added in v1.0.1

func (*NullableDigilockerRevokeToken400ResponseData) UnmarshalJSON added in v1.0.1

func (*NullableDigilockerRevokeToken400ResponseData) Unset added in v1.0.1

type NullableDigilockerRevokeTokenResponse added in v1.0.1

type NullableDigilockerRevokeTokenResponse struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerRevokeTokenResponse added in v1.0.1

func NewNullableDigilockerRevokeTokenResponse(val *DigilockerRevokeTokenResponse) *NullableDigilockerRevokeTokenResponse

func (NullableDigilockerRevokeTokenResponse) Get added in v1.0.1

func (NullableDigilockerRevokeTokenResponse) IsSet added in v1.0.1

func (NullableDigilockerRevokeTokenResponse) MarshalJSON added in v1.0.1

func (v NullableDigilockerRevokeTokenResponse) MarshalJSON() ([]byte, error)

func (*NullableDigilockerRevokeTokenResponse) Set added in v1.0.1

func (*NullableDigilockerRevokeTokenResponse) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerRevokeTokenResponse) UnmarshalJSON(src []byte) error

func (*NullableDigilockerRevokeTokenResponse) Unset added in v1.0.1

type NullableDigilockerRevokeTokenResponseData added in v1.0.1

type NullableDigilockerRevokeTokenResponseData struct {
	// contains filtered or unexported fields
}

func NewNullableDigilockerRevokeTokenResponseData added in v1.0.1

func NewNullableDigilockerRevokeTokenResponseData(val *DigilockerRevokeTokenResponseData) *NullableDigilockerRevokeTokenResponseData

func (NullableDigilockerRevokeTokenResponseData) Get added in v1.0.1

func (NullableDigilockerRevokeTokenResponseData) IsSet added in v1.0.1

func (NullableDigilockerRevokeTokenResponseData) MarshalJSON added in v1.0.1

func (*NullableDigilockerRevokeTokenResponseData) Set added in v1.0.1

func (*NullableDigilockerRevokeTokenResponseData) UnmarshalJSON added in v1.0.1

func (v *NullableDigilockerRevokeTokenResponseData) UnmarshalJSON(src []byte) error

func (*NullableDigilockerRevokeTokenResponseData) Unset added in v1.0.1

type NullableExtractText400Response

type NullableExtractText400Response struct {
	// contains filtered or unexported fields
}

func (NullableExtractText400Response) Get

func (NullableExtractText400Response) IsSet

func (NullableExtractText400Response) MarshalJSON

func (v NullableExtractText400Response) MarshalJSON() ([]byte, error)

func (*NullableExtractText400Response) Set

func (*NullableExtractText400Response) UnmarshalJSON

func (v *NullableExtractText400Response) UnmarshalJSON(src []byte) error

func (*NullableExtractText400Response) Unset

func (v *NullableExtractText400Response) Unset()

type NullableExtractText400ResponseError

type NullableExtractText400ResponseError struct {
	// contains filtered or unexported fields
}

func (NullableExtractText400ResponseError) Get

func (NullableExtractText400ResponseError) IsSet

func (NullableExtractText400ResponseError) MarshalJSON

func (v NullableExtractText400ResponseError) MarshalJSON() ([]byte, error)

func (*NullableExtractText400ResponseError) Set

func (*NullableExtractText400ResponseError) UnmarshalJSON

func (v *NullableExtractText400ResponseError) UnmarshalJSON(src []byte) error

func (*NullableExtractText400ResponseError) Unset

type NullableExtractTextRequest

type NullableExtractTextRequest struct {
	// contains filtered or unexported fields
}

func NewNullableExtractTextRequest

func NewNullableExtractTextRequest(val *ExtractTextRequest) *NullableExtractTextRequest

func (NullableExtractTextRequest) Get

func (NullableExtractTextRequest) IsSet

func (v NullableExtractTextRequest) IsSet() bool

func (NullableExtractTextRequest) MarshalJSON

func (v NullableExtractTextRequest) MarshalJSON() ([]byte, error)

func (*NullableExtractTextRequest) Set

func (*NullableExtractTextRequest) UnmarshalJSON

func (v *NullableExtractTextRequest) UnmarshalJSON(src []byte) error

func (*NullableExtractTextRequest) Unset

func (v *NullableExtractTextRequest) Unset()

type NullableExtractTextResponse

type NullableExtractTextResponse struct {
	// contains filtered or unexported fields
}

func NewNullableExtractTextResponse

func NewNullableExtractTextResponse(val *ExtractTextResponse) *NullableExtractTextResponse

func (NullableExtractTextResponse) Get

func (NullableExtractTextResponse) IsSet

func (NullableExtractTextResponse) MarshalJSON

func (v NullableExtractTextResponse) MarshalJSON() ([]byte, error)

func (*NullableExtractTextResponse) Set

func (*NullableExtractTextResponse) UnmarshalJSON

func (v *NullableExtractTextResponse) UnmarshalJSON(src []byte) error

func (*NullableExtractTextResponse) Unset

func (v *NullableExtractTextResponse) Unset()

type NullableExtractTextResponseOcrResult

type NullableExtractTextResponseOcrResult struct {
	// contains filtered or unexported fields
}

func (NullableExtractTextResponseOcrResult) Get

func (NullableExtractTextResponseOcrResult) IsSet

func (NullableExtractTextResponseOcrResult) MarshalJSON

func (v NullableExtractTextResponseOcrResult) MarshalJSON() ([]byte, error)

func (*NullableExtractTextResponseOcrResult) Set

func (*NullableExtractTextResponseOcrResult) UnmarshalJSON

func (v *NullableExtractTextResponseOcrResult) UnmarshalJSON(src []byte) error

func (*NullableExtractTextResponseOcrResult) Unset

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableMaskAadhaarRequest

type NullableMaskAadhaarRequest struct {
	// contains filtered or unexported fields
}

func NewNullableMaskAadhaarRequest

func NewNullableMaskAadhaarRequest(val *MaskAadhaarRequest) *NullableMaskAadhaarRequest

func (NullableMaskAadhaarRequest) Get

func (NullableMaskAadhaarRequest) IsSet

func (v NullableMaskAadhaarRequest) IsSet() bool

func (NullableMaskAadhaarRequest) MarshalJSON

func (v NullableMaskAadhaarRequest) MarshalJSON() ([]byte, error)

func (*NullableMaskAadhaarRequest) Set

func (*NullableMaskAadhaarRequest) UnmarshalJSON

func (v *NullableMaskAadhaarRequest) UnmarshalJSON(src []byte) error

func (*NullableMaskAadhaarRequest) Unset

func (v *NullableMaskAadhaarRequest) Unset()

type NullableMaskAadhaarUid400Response

type NullableMaskAadhaarUid400Response struct {
	// contains filtered or unexported fields
}

func (NullableMaskAadhaarUid400Response) Get

func (NullableMaskAadhaarUid400Response) IsSet

func (NullableMaskAadhaarUid400Response) MarshalJSON

func (v NullableMaskAadhaarUid400Response) MarshalJSON() ([]byte, error)

func (*NullableMaskAadhaarUid400Response) Set

func (*NullableMaskAadhaarUid400Response) UnmarshalJSON

func (v *NullableMaskAadhaarUid400Response) UnmarshalJSON(src []byte) error

func (*NullableMaskAadhaarUid400Response) Unset

type NullableMaskAadhaarUidResponse

type NullableMaskAadhaarUidResponse struct {
	// contains filtered or unexported fields
}

func (NullableMaskAadhaarUidResponse) Get

func (NullableMaskAadhaarUidResponse) IsSet

func (NullableMaskAadhaarUidResponse) MarshalJSON

func (v NullableMaskAadhaarUidResponse) MarshalJSON() ([]byte, error)

func (*NullableMaskAadhaarUidResponse) Set

func (*NullableMaskAadhaarUidResponse) UnmarshalJSON

func (v *NullableMaskAadhaarUidResponse) UnmarshalJSON(src []byte) error

func (*NullableMaskAadhaarUidResponse) Unset

func (v *NullableMaskAadhaarUidResponse) Unset()

type NullableMaskAadhaarUidResponseData

type NullableMaskAadhaarUidResponseData struct {
	// contains filtered or unexported fields
}

func (NullableMaskAadhaarUidResponseData) Get

func (NullableMaskAadhaarUidResponseData) IsSet

func (NullableMaskAadhaarUidResponseData) MarshalJSON

func (v NullableMaskAadhaarUidResponseData) MarshalJSON() ([]byte, error)

func (*NullableMaskAadhaarUidResponseData) Set

func (*NullableMaskAadhaarUidResponseData) UnmarshalJSON

func (v *NullableMaskAadhaarUidResponseData) UnmarshalJSON(src []byte) error

func (*NullableMaskAadhaarUidResponseData) Unset

type NullableMatchFace400Response

type NullableMatchFace400Response struct {
	// contains filtered or unexported fields
}

func NewNullableMatchFace400Response

func NewNullableMatchFace400Response(val *MatchFace400Response) *NullableMatchFace400Response

func (NullableMatchFace400Response) Get

func (NullableMatchFace400Response) IsSet

func (NullableMatchFace400Response) MarshalJSON

func (v NullableMatchFace400Response) MarshalJSON() ([]byte, error)

func (*NullableMatchFace400Response) Set

func (*NullableMatchFace400Response) UnmarshalJSON

func (v *NullableMatchFace400Response) UnmarshalJSON(src []byte) error

func (*NullableMatchFace400Response) Unset

func (v *NullableMatchFace400Response) Unset()

type NullableMatchFaceRequest

type NullableMatchFaceRequest struct {
	// contains filtered or unexported fields
}

func NewNullableMatchFaceRequest

func NewNullableMatchFaceRequest(val *MatchFaceRequest) *NullableMatchFaceRequest

func (NullableMatchFaceRequest) Get

func (NullableMatchFaceRequest) IsSet

func (v NullableMatchFaceRequest) IsSet() bool

func (NullableMatchFaceRequest) MarshalJSON

func (v NullableMatchFaceRequest) MarshalJSON() ([]byte, error)

func (*NullableMatchFaceRequest) Set

func (*NullableMatchFaceRequest) UnmarshalJSON

func (v *NullableMatchFaceRequest) UnmarshalJSON(src []byte) error

func (*NullableMatchFaceRequest) Unset

func (v *NullableMatchFaceRequest) Unset()

type NullableMatchFaceResponse

type NullableMatchFaceResponse struct {
	// contains filtered or unexported fields
}

func NewNullableMatchFaceResponse

func NewNullableMatchFaceResponse(val *MatchFaceResponse) *NullableMatchFaceResponse

func (NullableMatchFaceResponse) Get

func (NullableMatchFaceResponse) IsSet

func (v NullableMatchFaceResponse) IsSet() bool

func (NullableMatchFaceResponse) MarshalJSON

func (v NullableMatchFaceResponse) MarshalJSON() ([]byte, error)

func (*NullableMatchFaceResponse) Set

func (*NullableMatchFaceResponse) UnmarshalJSON

func (v *NullableMatchFaceResponse) UnmarshalJSON(src []byte) error

func (*NullableMatchFaceResponse) Unset

func (v *NullableMatchFaceResponse) Unset()

type NullableMatchFaceResponseData

type NullableMatchFaceResponseData struct {
	// contains filtered or unexported fields
}

func (NullableMatchFaceResponseData) Get

func (NullableMatchFaceResponseData) IsSet

func (NullableMatchFaceResponseData) MarshalJSON

func (v NullableMatchFaceResponseData) MarshalJSON() ([]byte, error)

func (*NullableMatchFaceResponseData) Set

func (*NullableMatchFaceResponseData) UnmarshalJSON

func (v *NullableMatchFaceResponseData) UnmarshalJSON(src []byte) error

func (*NullableMatchFaceResponseData) Unset

func (v *NullableMatchFaceResponseData) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUpgradedaadhaarxmlGenerateOtp400Response added in v1.0.1

type NullableUpgradedaadhaarxmlGenerateOtp400Response struct {
	// contains filtered or unexported fields
}

func (NullableUpgradedaadhaarxmlGenerateOtp400Response) Get added in v1.0.1

func (NullableUpgradedaadhaarxmlGenerateOtp400Response) IsSet added in v1.0.1

func (NullableUpgradedaadhaarxmlGenerateOtp400Response) MarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlGenerateOtp400Response) Set added in v1.0.1

func (*NullableUpgradedaadhaarxmlGenerateOtp400Response) UnmarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlGenerateOtp400Response) Unset added in v1.0.1

type NullableUpgradedaadhaarxmlGenerateOtpRequest

type NullableUpgradedaadhaarxmlGenerateOtpRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpgradedaadhaarxmlGenerateOtpRequest) Get

func (NullableUpgradedaadhaarxmlGenerateOtpRequest) IsSet

func (NullableUpgradedaadhaarxmlGenerateOtpRequest) MarshalJSON

func (*NullableUpgradedaadhaarxmlGenerateOtpRequest) Set

func (*NullableUpgradedaadhaarxmlGenerateOtpRequest) UnmarshalJSON

func (*NullableUpgradedaadhaarxmlGenerateOtpRequest) Unset

type NullableUpgradedaadhaarxmlGenerateOtpResponse added in v1.0.1

type NullableUpgradedaadhaarxmlGenerateOtpResponse struct {
	// contains filtered or unexported fields
}

func (NullableUpgradedaadhaarxmlGenerateOtpResponse) Get added in v1.0.1

func (NullableUpgradedaadhaarxmlGenerateOtpResponse) IsSet added in v1.0.1

func (NullableUpgradedaadhaarxmlGenerateOtpResponse) MarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlGenerateOtpResponse) Set added in v1.0.1

func (*NullableUpgradedaadhaarxmlGenerateOtpResponse) UnmarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlGenerateOtpResponse) Unset added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtp400Response added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtp400Response struct {
	// contains filtered or unexported fields
}

func (NullableUpgradedaadhaarxmlValidateOtp400Response) Get added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtp400Response) IsSet added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtp400Response) MarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtp400Response) Set added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtp400Response) UnmarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtp400Response) Unset added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtp400ResponseData added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtp400ResponseData struct {
	// contains filtered or unexported fields
}

func (NullableUpgradedaadhaarxmlValidateOtp400ResponseData) Get added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtp400ResponseData) IsSet added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtp400ResponseData) MarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtp400ResponseData) Set added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtp400ResponseData) UnmarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtp400ResponseData) Unset added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress struct {
	// contains filtered or unexported fields
}

func (NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) Get added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) IsSet added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) MarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) Set added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) UnmarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) Unset added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity struct {
	// contains filtered or unexported fields
}

func (NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) Get added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) IsSet added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) MarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) Set added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) UnmarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) Unset added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtpRequest

type NullableUpgradedaadhaarxmlValidateOtpRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpgradedaadhaarxmlValidateOtpRequest) Get

func (NullableUpgradedaadhaarxmlValidateOtpRequest) IsSet

func (NullableUpgradedaadhaarxmlValidateOtpRequest) MarshalJSON

func (*NullableUpgradedaadhaarxmlValidateOtpRequest) Set

func (*NullableUpgradedaadhaarxmlValidateOtpRequest) UnmarshalJSON

func (*NullableUpgradedaadhaarxmlValidateOtpRequest) Unset

type NullableUpgradedaadhaarxmlValidateOtpResponse added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtpResponse struct {
	// contains filtered or unexported fields
}

func (NullableUpgradedaadhaarxmlValidateOtpResponse) Get added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtpResponse) IsSet added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtpResponse) MarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtpResponse) Set added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtpResponse) UnmarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtpResponse) Unset added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtpResponseData added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtpResponseData struct {
	// contains filtered or unexported fields
}

func (NullableUpgradedaadhaarxmlValidateOtpResponseData) Get added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtpResponseData) IsSet added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtpResponseData) MarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtpResponseData) Set added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtpResponseData) UnmarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtpResponseData) Unset added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress struct {
	// contains filtered or unexported fields
}

func (NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) Get added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) IsSet added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) MarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) Set added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) UnmarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) Unset added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity added in v1.0.1

type NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity struct {
	// contains filtered or unexported fields
}

func (NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) Get added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) IsSet added in v1.0.1

func (NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) MarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) Set added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) UnmarshalJSON added in v1.0.1

func (*NullableUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) Unset added in v1.0.1

type NullableValidate400Response

type NullableValidate400Response struct {
	// contains filtered or unexported fields
}

func NewNullableValidate400Response

func NewNullableValidate400Response(val *Validate400Response) *NullableValidate400Response

func (NullableValidate400Response) Get

func (NullableValidate400Response) IsSet

func (NullableValidate400Response) MarshalJSON

func (v NullableValidate400Response) MarshalJSON() ([]byte, error)

func (*NullableValidate400Response) Set

func (*NullableValidate400Response) UnmarshalJSON

func (v *NullableValidate400Response) UnmarshalJSON(src []byte) error

func (*NullableValidate400Response) Unset

func (v *NullableValidate400Response) Unset()

type NullableValidate400ResponseError

type NullableValidate400ResponseError struct {
	// contains filtered or unexported fields
}

func (NullableValidate400ResponseError) Get

func (NullableValidate400ResponseError) IsSet

func (NullableValidate400ResponseError) MarshalJSON

func (v NullableValidate400ResponseError) MarshalJSON() ([]byte, error)

func (*NullableValidate400ResponseError) Set

func (*NullableValidate400ResponseError) UnmarshalJSON

func (v *NullableValidate400ResponseError) UnmarshalJSON(src []byte) error

func (*NullableValidate400ResponseError) Unset

type NullableValidateRequest

type NullableValidateRequest struct {
	// contains filtered or unexported fields
}

func NewNullableValidateRequest

func NewNullableValidateRequest(val *ValidateRequest) *NullableValidateRequest

func (NullableValidateRequest) Get

func (NullableValidateRequest) IsSet

func (v NullableValidateRequest) IsSet() bool

func (NullableValidateRequest) MarshalJSON

func (v NullableValidateRequest) MarshalJSON() ([]byte, error)

func (*NullableValidateRequest) Set

func (*NullableValidateRequest) UnmarshalJSON

func (v *NullableValidateRequest) UnmarshalJSON(src []byte) error

func (*NullableValidateRequest) Unset

func (v *NullableValidateRequest) Unset()

type NullableValidateResponse

type NullableValidateResponse struct {
	// contains filtered or unexported fields
}

func NewNullableValidateResponse

func NewNullableValidateResponse(val *ValidateResponse) *NullableValidateResponse

func (NullableValidateResponse) Get

func (NullableValidateResponse) IsSet

func (v NullableValidateResponse) IsSet() bool

func (NullableValidateResponse) MarshalJSON

func (v NullableValidateResponse) MarshalJSON() ([]byte, error)

func (*NullableValidateResponse) Set

func (*NullableValidateResponse) UnmarshalJSON

func (v *NullableValidateResponse) UnmarshalJSON(src []byte) error

func (*NullableValidateResponse) Unset

func (v *NullableValidateResponse) Unset()

type NullableValidateResponseError

type NullableValidateResponseError struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseError) Get

func (NullableValidateResponseError) IsSet

func (NullableValidateResponseError) MarshalJSON

func (v NullableValidateResponseError) MarshalJSON() ([]byte, error)

func (*NullableValidateResponseError) Set

func (*NullableValidateResponseError) UnmarshalJSON

func (v *NullableValidateResponseError) UnmarshalJSON(src []byte) error

func (*NullableValidateResponseError) Unset

func (v *NullableValidateResponseError) Unset()

type NullableValidateResponseKycResult

type NullableValidateResponseKycResult struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResult) Get

func (NullableValidateResponseKycResult) IsSet

func (NullableValidateResponseKycResult) MarshalJSON

func (v NullableValidateResponseKycResult) MarshalJSON() ([]byte, error)

func (*NullableValidateResponseKycResult) Set

func (*NullableValidateResponseKycResult) UnmarshalJSON

func (v *NullableValidateResponseKycResult) UnmarshalJSON(src []byte) error

func (*NullableValidateResponseKycResult) Unset

type NullableValidateResponseKycResultAddress

type NullableValidateResponseKycResultAddress struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultAddress) Get

func (NullableValidateResponseKycResultAddress) IsSet

func (NullableValidateResponseKycResultAddress) MarshalJSON

func (*NullableValidateResponseKycResultAddress) Set

func (*NullableValidateResponseKycResultAddress) UnmarshalJSON

func (v *NullableValidateResponseKycResultAddress) UnmarshalJSON(src []byte) error

func (*NullableValidateResponseKycResultAddress) Unset

type NullableValidateResponseKycResultAddressState

type NullableValidateResponseKycResultAddressState struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultAddressState) Get

func (NullableValidateResponseKycResultAddressState) IsSet

func (NullableValidateResponseKycResultAddressState) MarshalJSON

func (*NullableValidateResponseKycResultAddressState) Set

func (*NullableValidateResponseKycResultAddressState) UnmarshalJSON

func (*NullableValidateResponseKycResultAddressState) Unset

type NullableValidateResponseKycResultAddressesInner

type NullableValidateResponseKycResultAddressesInner struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultAddressesInner) Get

func (NullableValidateResponseKycResultAddressesInner) IsSet

func (NullableValidateResponseKycResultAddressesInner) MarshalJSON

func (*NullableValidateResponseKycResultAddressesInner) Set

func (*NullableValidateResponseKycResultAddressesInner) UnmarshalJSON

func (*NullableValidateResponseKycResultAddressesInner) Unset

type NullableValidateResponseKycResultAllClassOfVehicleInner

type NullableValidateResponseKycResultAllClassOfVehicleInner struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultAllClassOfVehicleInner) Get

func (NullableValidateResponseKycResultAllClassOfVehicleInner) IsSet

func (NullableValidateResponseKycResultAllClassOfVehicleInner) MarshalJSON

func (*NullableValidateResponseKycResultAllClassOfVehicleInner) Set

func (*NullableValidateResponseKycResultAllClassOfVehicleInner) UnmarshalJSON

func (*NullableValidateResponseKycResultAllClassOfVehicleInner) Unset

type NullableValidateResponseKycResultBusinessDetailsInner

type NullableValidateResponseKycResultBusinessDetailsInner struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultBusinessDetailsInner) Get

func (NullableValidateResponseKycResultBusinessDetailsInner) IsSet

func (NullableValidateResponseKycResultBusinessDetailsInner) MarshalJSON

func (*NullableValidateResponseKycResultBusinessDetailsInner) Set

func (*NullableValidateResponseKycResultBusinessDetailsInner) UnmarshalJSON

func (*NullableValidateResponseKycResultBusinessDetailsInner) Unset

type NullableValidateResponseKycResultCompanyMasterData

type NullableValidateResponseKycResultCompanyMasterData struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultCompanyMasterData) Get

func (NullableValidateResponseKycResultCompanyMasterData) IsSet

func (NullableValidateResponseKycResultCompanyMasterData) MarshalJSON

func (*NullableValidateResponseKycResultCompanyMasterData) Set

func (*NullableValidateResponseKycResultCompanyMasterData) UnmarshalJSON

func (*NullableValidateResponseKycResultCompanyMasterData) Unset

type NullableValidateResponseKycResultDirectorData

type NullableValidateResponseKycResultDirectorData struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultDirectorData) Get

func (NullableValidateResponseKycResultDirectorData) IsSet

func (NullableValidateResponseKycResultDirectorData) MarshalJSON

func (*NullableValidateResponseKycResultDirectorData) Set

func (*NullableValidateResponseKycResultDirectorData) UnmarshalJSON

func (*NullableValidateResponseKycResultDirectorData) Unset

type NullableValidateResponseKycResultDirectors

type NullableValidateResponseKycResultDirectors struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultDirectors) Get

func (NullableValidateResponseKycResultDirectors) IsSet

func (NullableValidateResponseKycResultDirectors) MarshalJSON

func (*NullableValidateResponseKycResultDirectors) Set

func (*NullableValidateResponseKycResultDirectors) UnmarshalJSON

func (v *NullableValidateResponseKycResultDirectors) UnmarshalJSON(src []byte) error

func (*NullableValidateResponseKycResultDirectors) Unset

type NullableValidateResponseKycResultDirectorsOneOfInner

type NullableValidateResponseKycResultDirectorsOneOfInner struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultDirectorsOneOfInner) Get

func (NullableValidateResponseKycResultDirectorsOneOfInner) IsSet

func (NullableValidateResponseKycResultDirectorsOneOfInner) MarshalJSON

func (*NullableValidateResponseKycResultDirectorsOneOfInner) Set

func (*NullableValidateResponseKycResultDirectorsOneOfInner) UnmarshalJSON

func (*NullableValidateResponseKycResultDirectorsOneOfInner) Unset

type NullableValidateResponseKycResultFilingStatusInner

type NullableValidateResponseKycResultFilingStatusInner struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultFilingStatusInner) Get

func (NullableValidateResponseKycResultFilingStatusInner) IsSet

func (NullableValidateResponseKycResultFilingStatusInner) MarshalJSON

func (*NullableValidateResponseKycResultFilingStatusInner) Set

func (*NullableValidateResponseKycResultFilingStatusInner) UnmarshalJSON

func (*NullableValidateResponseKycResultFilingStatusInner) Unset

type NullableValidateResponseKycResultForeignCompanyMasterData

type NullableValidateResponseKycResultForeignCompanyMasterData struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultForeignCompanyMasterData) Get

func (NullableValidateResponseKycResultForeignCompanyMasterData) IsSet

func (NullableValidateResponseKycResultForeignCompanyMasterData) MarshalJSON

func (*NullableValidateResponseKycResultForeignCompanyMasterData) Set

func (*NullableValidateResponseKycResultForeignCompanyMasterData) UnmarshalJSON

func (*NullableValidateResponseKycResultForeignCompanyMasterData) Unset

type NullableValidateResponseKycResultLlpMasterData

type NullableValidateResponseKycResultLlpMasterData struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultLlpMasterData) Get

func (NullableValidateResponseKycResultLlpMasterData) IsSet

func (NullableValidateResponseKycResultLlpMasterData) MarshalJSON

func (*NullableValidateResponseKycResultLlpMasterData) Set

func (*NullableValidateResponseKycResultLlpMasterData) UnmarshalJSON

func (*NullableValidateResponseKycResultLlpMasterData) Unset

type NullableValidateResponseKycResultPollingBoothDetails

type NullableValidateResponseKycResultPollingBoothDetails struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultPollingBoothDetails) Get

func (NullableValidateResponseKycResultPollingBoothDetails) IsSet

func (NullableValidateResponseKycResultPollingBoothDetails) MarshalJSON

func (*NullableValidateResponseKycResultPollingBoothDetails) Set

func (*NullableValidateResponseKycResultPollingBoothDetails) UnmarshalJSON

func (*NullableValidateResponseKycResultPollingBoothDetails) Unset

type NullableValidateResponseKycResultPremissesAddress

type NullableValidateResponseKycResultPremissesAddress struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultPremissesAddress) Get

func (NullableValidateResponseKycResultPremissesAddress) IsSet

func (NullableValidateResponseKycResultPremissesAddress) MarshalJSON

func (*NullableValidateResponseKycResultPremissesAddress) Set

func (*NullableValidateResponseKycResultPremissesAddress) UnmarshalJSON

func (*NullableValidateResponseKycResultPremissesAddress) Unset

type NullableValidateResponseKycResultPrimaryBusinessContact

type NullableValidateResponseKycResultPrimaryBusinessContact struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultPrimaryBusinessContact) Get

func (NullableValidateResponseKycResultPrimaryBusinessContact) IsSet

func (NullableValidateResponseKycResultPrimaryBusinessContact) MarshalJSON

func (*NullableValidateResponseKycResultPrimaryBusinessContact) Set

func (*NullableValidateResponseKycResultPrimaryBusinessContact) UnmarshalJSON

func (*NullableValidateResponseKycResultPrimaryBusinessContact) Unset

type NullableValidateResponseKycResultPrimaryBusinessContactMobileNumber

type NullableValidateResponseKycResultPrimaryBusinessContactMobileNumber struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultPrimaryBusinessContactMobileNumber) Get

func (NullableValidateResponseKycResultPrimaryBusinessContactMobileNumber) IsSet

func (NullableValidateResponseKycResultPrimaryBusinessContactMobileNumber) MarshalJSON

func (*NullableValidateResponseKycResultPrimaryBusinessContactMobileNumber) Set

func (*NullableValidateResponseKycResultPrimaryBusinessContactMobileNumber) UnmarshalJSON

func (*NullableValidateResponseKycResultPrimaryBusinessContactMobileNumber) Unset

type NullableValidateResponseKycResultProductsInner

type NullableValidateResponseKycResultProductsInner struct {
	// contains filtered or unexported fields
}

func (NullableValidateResponseKycResultProductsInner) Get

func (NullableValidateResponseKycResultProductsInner) IsSet

func (NullableValidateResponseKycResultProductsInner) MarshalJSON

func (*NullableValidateResponseKycResultProductsInner) Set

func (*NullableValidateResponseKycResultProductsInner) UnmarshalJSON

func (*NullableValidateResponseKycResultProductsInner) Unset

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type UpgradedAadhaarXmlApiGenerateOtpRequest

type UpgradedAadhaarXmlApiGenerateOtpRequest struct {
	ApiService *UpgradedAadhaarXmlApiService
	// contains filtered or unexported fields
}

func (UpgradedAadhaarXmlApiGenerateOtpRequest) Execute

type UpgradedAadhaarXmlApiService

type UpgradedAadhaarXmlApiService service

UpgradedAadhaarXmlApiService UpgradedAadhaarXmlApi service

func (*UpgradedAadhaarXmlApiService) GenerateOtp

GenerateOtp Generate OTP

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upgradedaadhaarxmlGenerateOtpRequest
@return UpgradedAadhaarXmlApiGenerateOtpRequest

func (*UpgradedAadhaarXmlApiService) GenerateOtpExecute

Execute executes the request

@return UpgradedaadhaarxmlGenerateOtpResponse

func (*UpgradedAadhaarXmlApiService) ValidateOtp

ValidateOtp Validate OTP

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param upgradedaadhaarxmlValidateOtpRequest
@return UpgradedAadhaarXmlApiValidateOtpRequest

func (*UpgradedAadhaarXmlApiService) ValidateOtpExecute

Execute executes the request

@return UpgradedaadhaarxmlValidateOtpResponse

type UpgradedAadhaarXmlApiValidateOtpRequest

type UpgradedAadhaarXmlApiValidateOtpRequest struct {
	ApiService *UpgradedAadhaarXmlApiService
	// contains filtered or unexported fields
}

func (UpgradedAadhaarXmlApiValidateOtpRequest) Execute

type UpgradedaadhaarxmlGenerateOtp400Response added in v1.0.1

type UpgradedaadhaarxmlGenerateOtp400Response struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Message       *string `json:"message,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	ResponseKey   *string `json:"responseKey,omitempty"`
	Status        *string `json:"status,omitempty"`
}

UpgradedaadhaarxmlGenerateOtp400Response struct for UpgradedaadhaarxmlGenerateOtp400Response

func NewUpgradedaadhaarxmlGenerateOtp400Response added in v1.0.1

func NewUpgradedaadhaarxmlGenerateOtp400Response() *UpgradedaadhaarxmlGenerateOtp400Response

NewUpgradedaadhaarxmlGenerateOtp400Response instantiates a new UpgradedaadhaarxmlGenerateOtp400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpgradedaadhaarxmlGenerateOtp400ResponseWithDefaults added in v1.0.1

func NewUpgradedaadhaarxmlGenerateOtp400ResponseWithDefaults() *UpgradedaadhaarxmlGenerateOtp400Response

NewUpgradedaadhaarxmlGenerateOtp400ResponseWithDefaults instantiates a new UpgradedaadhaarxmlGenerateOtp400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpgradedaadhaarxmlGenerateOtp400Response) GetDecentroTxnId added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtp400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtp400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtp400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtp400Response) GetMessage added in v1.0.1

GetMessage returns the Message field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtp400Response) GetMessageOk added in v1.0.1

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtp400Response) GetResponseCode added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtp400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtp400Response) GetResponseCodeOk added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtp400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtp400Response) GetResponseKey added in v1.0.1

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtp400Response) GetResponseKeyOk added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtp400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtp400Response) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtp400Response) GetStatusOk added in v1.0.1

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtp400Response) HasDecentroTxnId added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtp400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlGenerateOtp400Response) HasMessage added in v1.0.1

HasMessage returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlGenerateOtp400Response) HasResponseCode added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtp400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlGenerateOtp400Response) HasResponseKey added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtp400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlGenerateOtp400Response) HasStatus added in v1.0.1

HasStatus returns a boolean if a field has been set.

func (UpgradedaadhaarxmlGenerateOtp400Response) MarshalJSON added in v1.0.1

func (*UpgradedaadhaarxmlGenerateOtp400Response) SetDecentroTxnId added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtp400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*UpgradedaadhaarxmlGenerateOtp400Response) SetMessage added in v1.0.1

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*UpgradedaadhaarxmlGenerateOtp400Response) SetResponseCode added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtp400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*UpgradedaadhaarxmlGenerateOtp400Response) SetResponseKey added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtp400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*UpgradedaadhaarxmlGenerateOtp400Response) SetStatus added in v1.0.1

SetStatus gets a reference to the given string and assigns it to the Status field.

type UpgradedaadhaarxmlGenerateOtpRequest

type UpgradedaadhaarxmlGenerateOtpRequest struct {
	ReferenceId   *string `json:"reference_id,omitempty"`
	Consent       *bool   `json:"consent,omitempty"`
	Purpose       *string `json:"purpose,omitempty"`
	AadhaarNumber *string `json:"aadhaar_number,omitempty"`
}

UpgradedaadhaarxmlGenerateOtpRequest struct for UpgradedaadhaarxmlGenerateOtpRequest

func NewUpgradedaadhaarxmlGenerateOtpRequest

func NewUpgradedaadhaarxmlGenerateOtpRequest() *UpgradedaadhaarxmlGenerateOtpRequest

NewUpgradedaadhaarxmlGenerateOtpRequest instantiates a new UpgradedaadhaarxmlGenerateOtpRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpgradedaadhaarxmlGenerateOtpRequestWithDefaults

func NewUpgradedaadhaarxmlGenerateOtpRequestWithDefaults() *UpgradedaadhaarxmlGenerateOtpRequest

NewUpgradedaadhaarxmlGenerateOtpRequestWithDefaults instantiates a new UpgradedaadhaarxmlGenerateOtpRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpgradedaadhaarxmlGenerateOtpRequest) GetAadhaarNumber

func (o *UpgradedaadhaarxmlGenerateOtpRequest) GetAadhaarNumber() string

GetAadhaarNumber returns the AadhaarNumber field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtpRequest) GetAadhaarNumberOk

func (o *UpgradedaadhaarxmlGenerateOtpRequest) GetAadhaarNumberOk() (*string, bool)

GetAadhaarNumberOk returns a tuple with the AadhaarNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtpRequest) GetConsent

GetConsent returns the Consent field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtpRequest) GetConsentOk

func (o *UpgradedaadhaarxmlGenerateOtpRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtpRequest) GetPurpose

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtpRequest) GetPurposeOk

func (o *UpgradedaadhaarxmlGenerateOtpRequest) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtpRequest) GetReferenceId

func (o *UpgradedaadhaarxmlGenerateOtpRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtpRequest) GetReferenceIdOk

func (o *UpgradedaadhaarxmlGenerateOtpRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtpRequest) HasAadhaarNumber

func (o *UpgradedaadhaarxmlGenerateOtpRequest) HasAadhaarNumber() bool

HasAadhaarNumber returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlGenerateOtpRequest) HasConsent

HasConsent returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlGenerateOtpRequest) HasPurpose

HasPurpose returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlGenerateOtpRequest) HasReferenceId

func (o *UpgradedaadhaarxmlGenerateOtpRequest) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (UpgradedaadhaarxmlGenerateOtpRequest) MarshalJSON

func (o UpgradedaadhaarxmlGenerateOtpRequest) MarshalJSON() ([]byte, error)

func (*UpgradedaadhaarxmlGenerateOtpRequest) SetAadhaarNumber

func (o *UpgradedaadhaarxmlGenerateOtpRequest) SetAadhaarNumber(v string)

SetAadhaarNumber gets a reference to the given string and assigns it to the AadhaarNumber field.

func (*UpgradedaadhaarxmlGenerateOtpRequest) SetConsent

func (o *UpgradedaadhaarxmlGenerateOtpRequest) SetConsent(v bool)

SetConsent gets a reference to the given bool and assigns it to the Consent field.

func (*UpgradedaadhaarxmlGenerateOtpRequest) SetPurpose

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*UpgradedaadhaarxmlGenerateOtpRequest) SetReferenceId

func (o *UpgradedaadhaarxmlGenerateOtpRequest) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

type UpgradedaadhaarxmlGenerateOtpResponse added in v1.0.1

type UpgradedaadhaarxmlGenerateOtpResponse struct {
	DecentroTxnId *string `json:"decentroTxnId,omitempty"`
	Status        *string `json:"status,omitempty"`
	ResponseCode  *string `json:"responseCode,omitempty"`
	Message       *string `json:"message,omitempty"`
	ResponseKey   *string `json:"responseKey,omitempty"`
}

UpgradedaadhaarxmlGenerateOtpResponse struct for UpgradedaadhaarxmlGenerateOtpResponse

func NewUpgradedaadhaarxmlGenerateOtpResponse added in v1.0.1

func NewUpgradedaadhaarxmlGenerateOtpResponse() *UpgradedaadhaarxmlGenerateOtpResponse

NewUpgradedaadhaarxmlGenerateOtpResponse instantiates a new UpgradedaadhaarxmlGenerateOtpResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpgradedaadhaarxmlGenerateOtpResponseWithDefaults added in v1.0.1

func NewUpgradedaadhaarxmlGenerateOtpResponseWithDefaults() *UpgradedaadhaarxmlGenerateOtpResponse

NewUpgradedaadhaarxmlGenerateOtpResponseWithDefaults instantiates a new UpgradedaadhaarxmlGenerateOtpResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpgradedaadhaarxmlGenerateOtpResponse) GetDecentroTxnId added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtpResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtpResponse) GetMessage added in v1.0.1

GetMessage returns the Message field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtpResponse) GetMessageOk added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtpResponse) GetResponseCode added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtpResponse) GetResponseCodeOk added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtpResponse) GetResponseKey added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtpResponse) GetResponseKeyOk added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtpResponse) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlGenerateOtpResponse) GetStatusOk added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlGenerateOtpResponse) HasDecentroTxnId added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlGenerateOtpResponse) HasMessage added in v1.0.1

HasMessage returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlGenerateOtpResponse) HasResponseCode added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlGenerateOtpResponse) HasResponseKey added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlGenerateOtpResponse) HasStatus added in v1.0.1

HasStatus returns a boolean if a field has been set.

func (UpgradedaadhaarxmlGenerateOtpResponse) MarshalJSON added in v1.0.1

func (o UpgradedaadhaarxmlGenerateOtpResponse) MarshalJSON() ([]byte, error)

func (*UpgradedaadhaarxmlGenerateOtpResponse) SetDecentroTxnId added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*UpgradedaadhaarxmlGenerateOtpResponse) SetMessage added in v1.0.1

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*UpgradedaadhaarxmlGenerateOtpResponse) SetResponseCode added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*UpgradedaadhaarxmlGenerateOtpResponse) SetResponseKey added in v1.0.1

func (o *UpgradedaadhaarxmlGenerateOtpResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*UpgradedaadhaarxmlGenerateOtpResponse) SetStatus added in v1.0.1

SetStatus gets a reference to the given string and assigns it to the Status field.

type UpgradedaadhaarxmlValidateOtp400Response added in v1.0.1

type UpgradedaadhaarxmlValidateOtp400Response struct {
	Data          *UpgradedaadhaarxmlValidateOtp400ResponseData `json:"data,omitempty"`
	DecentroTxnId *string                                       `json:"decentroTxnId,omitempty"`
	Message       *string                                       `json:"message,omitempty"`
	ResponseCode  *string                                       `json:"responseCode,omitempty"`
	ResponseKey   *string                                       `json:"responseKey,omitempty"`
	Status        *string                                       `json:"status,omitempty"`
}

UpgradedaadhaarxmlValidateOtp400Response struct for UpgradedaadhaarxmlValidateOtp400Response

func NewUpgradedaadhaarxmlValidateOtp400Response added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtp400Response() *UpgradedaadhaarxmlValidateOtp400Response

NewUpgradedaadhaarxmlValidateOtp400Response instantiates a new UpgradedaadhaarxmlValidateOtp400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpgradedaadhaarxmlValidateOtp400ResponseWithDefaults added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtp400ResponseWithDefaults() *UpgradedaadhaarxmlValidateOtp400Response

NewUpgradedaadhaarxmlValidateOtp400ResponseWithDefaults instantiates a new UpgradedaadhaarxmlValidateOtp400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpgradedaadhaarxmlValidateOtp400Response) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400Response) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400Response) GetDecentroTxnId added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400Response) GetDecentroTxnIdOk added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400Response) GetMessage added in v1.0.1

GetMessage returns the Message field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400Response) GetMessageOk added in v1.0.1

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400Response) GetResponseCode added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400Response) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400Response) GetResponseCodeOk added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400Response) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400Response) GetResponseKey added in v1.0.1

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400Response) GetResponseKeyOk added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400Response) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400Response) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400Response) GetStatusOk added in v1.0.1

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400Response) HasData added in v1.0.1

HasData returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400Response) HasDecentroTxnId added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400Response) HasMessage added in v1.0.1

HasMessage returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400Response) HasResponseCode added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400Response) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400Response) HasResponseKey added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400Response) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400Response) HasStatus added in v1.0.1

HasStatus returns a boolean if a field has been set.

func (UpgradedaadhaarxmlValidateOtp400Response) MarshalJSON added in v1.0.1

func (*UpgradedaadhaarxmlValidateOtp400Response) SetData added in v1.0.1

SetData gets a reference to the given UpgradedaadhaarxmlValidateOtp400ResponseData and assigns it to the Data field.

func (*UpgradedaadhaarxmlValidateOtp400Response) SetDecentroTxnId added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*UpgradedaadhaarxmlValidateOtp400Response) SetMessage added in v1.0.1

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*UpgradedaadhaarxmlValidateOtp400Response) SetResponseCode added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400Response) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*UpgradedaadhaarxmlValidateOtp400Response) SetResponseKey added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400Response) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*UpgradedaadhaarxmlValidateOtp400Response) SetStatus added in v1.0.1

SetStatus gets a reference to the given string and assigns it to the Status field.

type UpgradedaadhaarxmlValidateOtp400ResponseData added in v1.0.1

type UpgradedaadhaarxmlValidateOtp400ResponseData struct {
	AadhaarReferenceNumber *string                                                      `json:"aadhaarReferenceNumber,omitempty"`
	Image                  *string                                                      `json:"image,omitempty"`
	ProofOfAddress         *UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress  `json:"proofOfAddress,omitempty"`
	ProofOfIdentity        *UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity `json:"proofOfIdentity,omitempty"`
}

UpgradedaadhaarxmlValidateOtp400ResponseData struct for UpgradedaadhaarxmlValidateOtp400ResponseData

func NewUpgradedaadhaarxmlValidateOtp400ResponseData added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtp400ResponseData() *UpgradedaadhaarxmlValidateOtp400ResponseData

NewUpgradedaadhaarxmlValidateOtp400ResponseData instantiates a new UpgradedaadhaarxmlValidateOtp400ResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpgradedaadhaarxmlValidateOtp400ResponseDataWithDefaults added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtp400ResponseDataWithDefaults() *UpgradedaadhaarxmlValidateOtp400ResponseData

NewUpgradedaadhaarxmlValidateOtp400ResponseDataWithDefaults instantiates a new UpgradedaadhaarxmlValidateOtp400ResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) GetAadhaarReferenceNumber added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400ResponseData) GetAadhaarReferenceNumber() string

GetAadhaarReferenceNumber returns the AadhaarReferenceNumber field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) GetAadhaarReferenceNumberOk added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400ResponseData) GetAadhaarReferenceNumberOk() (*string, bool)

GetAadhaarReferenceNumberOk returns a tuple with the AadhaarReferenceNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) GetImage added in v1.0.1

GetImage returns the Image field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) GetImageOk added in v1.0.1

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) GetProofOfAddress added in v1.0.1

GetProofOfAddress returns the ProofOfAddress field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) GetProofOfAddressOk added in v1.0.1

GetProofOfAddressOk returns a tuple with the ProofOfAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) GetProofOfIdentity added in v1.0.1

GetProofOfIdentity returns the ProofOfIdentity field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) GetProofOfIdentityOk added in v1.0.1

GetProofOfIdentityOk returns a tuple with the ProofOfIdentity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) HasAadhaarReferenceNumber added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400ResponseData) HasAadhaarReferenceNumber() bool

HasAadhaarReferenceNumber returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) HasImage added in v1.0.1

HasImage returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) HasProofOfAddress added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400ResponseData) HasProofOfAddress() bool

HasProofOfAddress returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) HasProofOfIdentity added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400ResponseData) HasProofOfIdentity() bool

HasProofOfIdentity returns a boolean if a field has been set.

func (UpgradedaadhaarxmlValidateOtp400ResponseData) MarshalJSON added in v1.0.1

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) SetAadhaarReferenceNumber added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtp400ResponseData) SetAadhaarReferenceNumber(v string)

SetAadhaarReferenceNumber gets a reference to the given string and assigns it to the AadhaarReferenceNumber field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) SetImage added in v1.0.1

SetImage gets a reference to the given string and assigns it to the Image field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) SetProofOfAddress added in v1.0.1

SetProofOfAddress gets a reference to the given UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress and assigns it to the ProofOfAddress field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseData) SetProofOfIdentity added in v1.0.1

SetProofOfIdentity gets a reference to the given UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity and assigns it to the ProofOfIdentity field.

type UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress added in v1.0.1

type UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress struct {
	CareOf      *string `json:"careOf,omitempty"`
	Country     *string `json:"country,omitempty"`
	District    *string `json:"district,omitempty"`
	House       *string `json:"house,omitempty"`
	Landmark    *string `json:"landmark,omitempty"`
	Locality    *string `json:"locality,omitempty"`
	Pincode     *string `json:"pincode,omitempty"`
	PostOffice  *string `json:"postOffice,omitempty"`
	State       *string `json:"state,omitempty"`
	Street      *string `json:"street,omitempty"`
	SubDistrict *string `json:"subDistrict,omitempty"`
	Vtc         *string `json:"vtc,omitempty"`
}

UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress struct for UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress

func NewUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress() *UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress

NewUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress instantiates a new UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddressWithDefaults added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddressWithDefaults() *UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress

NewUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddressWithDefaults instantiates a new UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetCareOf added in v1.0.1

GetCareOf returns the CareOf field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetCareOfOk added in v1.0.1

GetCareOfOk returns a tuple with the CareOf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetCountry added in v1.0.1

GetCountry returns the Country field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetCountryOk added in v1.0.1

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetDistrict added in v1.0.1

GetDistrict returns the District field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetDistrictOk added in v1.0.1

GetDistrictOk returns a tuple with the District field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetHouse added in v1.0.1

GetHouse returns the House field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetHouseOk added in v1.0.1

GetHouseOk returns a tuple with the House field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetLandmark added in v1.0.1

GetLandmark returns the Landmark field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetLandmarkOk added in v1.0.1

GetLandmarkOk returns a tuple with the Landmark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetLocality added in v1.0.1

GetLocality returns the Locality field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetLocalityOk added in v1.0.1

GetLocalityOk returns a tuple with the Locality field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetPincode added in v1.0.1

GetPincode returns the Pincode field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetPincodeOk added in v1.0.1

GetPincodeOk returns a tuple with the Pincode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetPostOffice added in v1.0.1

GetPostOffice returns the PostOffice field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetPostOfficeOk added in v1.0.1

GetPostOfficeOk returns a tuple with the PostOffice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetState added in v1.0.1

GetState returns the State field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetStateOk added in v1.0.1

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetStreet added in v1.0.1

GetStreet returns the Street field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetStreetOk added in v1.0.1

GetStreetOk returns a tuple with the Street field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetSubDistrict added in v1.0.1

GetSubDistrict returns the SubDistrict field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetSubDistrictOk added in v1.0.1

GetSubDistrictOk returns a tuple with the SubDistrict field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetVtc added in v1.0.1

GetVtc returns the Vtc field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) GetVtcOk added in v1.0.1

GetVtcOk returns a tuple with the Vtc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasCareOf added in v1.0.1

HasCareOf returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasCountry added in v1.0.1

HasCountry returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasDistrict added in v1.0.1

HasDistrict returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasHouse added in v1.0.1

HasHouse returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasLandmark added in v1.0.1

HasLandmark returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasLocality added in v1.0.1

HasLocality returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasPincode added in v1.0.1

HasPincode returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasPostOffice added in v1.0.1

HasPostOffice returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasState added in v1.0.1

HasState returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasStreet added in v1.0.1

HasStreet returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasSubDistrict added in v1.0.1

HasSubDistrict returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) HasVtc added in v1.0.1

HasVtc returns a boolean if a field has been set.

func (UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) MarshalJSON added in v1.0.1

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetCareOf added in v1.0.1

SetCareOf gets a reference to the given string and assigns it to the CareOf field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetCountry added in v1.0.1

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetDistrict added in v1.0.1

SetDistrict gets a reference to the given string and assigns it to the District field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetHouse added in v1.0.1

SetHouse gets a reference to the given string and assigns it to the House field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetLandmark added in v1.0.1

SetLandmark gets a reference to the given string and assigns it to the Landmark field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetLocality added in v1.0.1

SetLocality gets a reference to the given string and assigns it to the Locality field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetPincode added in v1.0.1

SetPincode gets a reference to the given string and assigns it to the Pincode field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetPostOffice added in v1.0.1

SetPostOffice gets a reference to the given string and assigns it to the PostOffice field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetState added in v1.0.1

SetState gets a reference to the given string and assigns it to the State field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetStreet added in v1.0.1

SetStreet gets a reference to the given string and assigns it to the Street field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetSubDistrict added in v1.0.1

SetSubDistrict gets a reference to the given string and assigns it to the SubDistrict field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfAddress) SetVtc added in v1.0.1

SetVtc gets a reference to the given string and assigns it to the Vtc field.

type UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity added in v1.0.1

type UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity struct {
	Dob                *string `json:"dob,omitempty"`
	Gender             *string `json:"gender,omitempty"`
	HashedEmail        *string `json:"hashedEmail,omitempty"`
	HashedMobileNumber *string `json:"hashedMobileNumber,omitempty"`
	Name               *string `json:"name,omitempty"`
}

UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity struct for UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity

func NewUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity() *UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity

NewUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity instantiates a new UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentityWithDefaults added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentityWithDefaults() *UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity

NewUpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentityWithDefaults instantiates a new UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetDob added in v1.0.1

GetDob returns the Dob field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetDobOk added in v1.0.1

GetDobOk returns a tuple with the Dob field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetGender added in v1.0.1

GetGender returns the Gender field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetGenderOk added in v1.0.1

GetGenderOk returns a tuple with the Gender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetHashedEmail added in v1.0.1

GetHashedEmail returns the HashedEmail field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetHashedEmailOk added in v1.0.1

GetHashedEmailOk returns a tuple with the HashedEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetHashedMobileNumber added in v1.0.1

GetHashedMobileNumber returns the HashedMobileNumber field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetHashedMobileNumberOk added in v1.0.1

GetHashedMobileNumberOk returns a tuple with the HashedMobileNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetName added in v1.0.1

GetName returns the Name field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) GetNameOk added in v1.0.1

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) HasDob added in v1.0.1

HasDob returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) HasGender added in v1.0.1

HasGender returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) HasHashedEmail added in v1.0.1

HasHashedEmail returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) HasHashedMobileNumber added in v1.0.1

HasHashedMobileNumber returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) HasName added in v1.0.1

HasName returns a boolean if a field has been set.

func (UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) MarshalJSON added in v1.0.1

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) SetDob added in v1.0.1

SetDob gets a reference to the given string and assigns it to the Dob field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) SetGender added in v1.0.1

SetGender gets a reference to the given string and assigns it to the Gender field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) SetHashedEmail added in v1.0.1

SetHashedEmail gets a reference to the given string and assigns it to the HashedEmail field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) SetHashedMobileNumber added in v1.0.1

SetHashedMobileNumber gets a reference to the given string and assigns it to the HashedMobileNumber field.

func (*UpgradedaadhaarxmlValidateOtp400ResponseDataProofOfIdentity) SetName added in v1.0.1

SetName gets a reference to the given string and assigns it to the Name field.

type UpgradedaadhaarxmlValidateOtpRequest

type UpgradedaadhaarxmlValidateOtpRequest struct {
	ReferenceId             *string `json:"reference_id,omitempty"`
	Consent                 *bool   `json:"consent,omitempty"`
	Purpose                 *string `json:"purpose,omitempty"`
	InitiationTransactionId *string `json:"initiation_transaction_id,omitempty"`
	Otp                     *string `json:"otp,omitempty"`
	ShareCode               *string `json:"share_code,omitempty"`
	GeneratePdf             *bool   `json:"generate_pdf,omitempty"`
	GenerateXml             *bool   `json:"generate_xml,omitempty"`
}

UpgradedaadhaarxmlValidateOtpRequest struct for UpgradedaadhaarxmlValidateOtpRequest

func NewUpgradedaadhaarxmlValidateOtpRequest

func NewUpgradedaadhaarxmlValidateOtpRequest() *UpgradedaadhaarxmlValidateOtpRequest

NewUpgradedaadhaarxmlValidateOtpRequest instantiates a new UpgradedaadhaarxmlValidateOtpRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpgradedaadhaarxmlValidateOtpRequestWithDefaults

func NewUpgradedaadhaarxmlValidateOtpRequestWithDefaults() *UpgradedaadhaarxmlValidateOtpRequest

NewUpgradedaadhaarxmlValidateOtpRequestWithDefaults instantiates a new UpgradedaadhaarxmlValidateOtpRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpgradedaadhaarxmlValidateOtpRequest) GetConsent

GetConsent returns the Consent field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetConsentOk

func (o *UpgradedaadhaarxmlValidateOtpRequest) GetConsentOk() (*bool, bool)

GetConsentOk returns a tuple with the Consent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetGeneratePdf

func (o *UpgradedaadhaarxmlValidateOtpRequest) GetGeneratePdf() bool

GetGeneratePdf returns the GeneratePdf field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetGeneratePdfOk

func (o *UpgradedaadhaarxmlValidateOtpRequest) GetGeneratePdfOk() (*bool, bool)

GetGeneratePdfOk returns a tuple with the GeneratePdf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetGenerateXml

func (o *UpgradedaadhaarxmlValidateOtpRequest) GetGenerateXml() bool

GetGenerateXml returns the GenerateXml field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetGenerateXmlOk

func (o *UpgradedaadhaarxmlValidateOtpRequest) GetGenerateXmlOk() (*bool, bool)

GetGenerateXmlOk returns a tuple with the GenerateXml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetInitiationTransactionId

func (o *UpgradedaadhaarxmlValidateOtpRequest) GetInitiationTransactionId() string

GetInitiationTransactionId returns the InitiationTransactionId field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetInitiationTransactionIdOk

func (o *UpgradedaadhaarxmlValidateOtpRequest) GetInitiationTransactionIdOk() (*string, bool)

GetInitiationTransactionIdOk returns a tuple with the InitiationTransactionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetOtp

GetOtp returns the Otp field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetOtpOk

GetOtpOk returns a tuple with the Otp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetPurpose

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetPurposeOk

func (o *UpgradedaadhaarxmlValidateOtpRequest) GetPurposeOk() (*string, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetReferenceId

func (o *UpgradedaadhaarxmlValidateOtpRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetReferenceIdOk

func (o *UpgradedaadhaarxmlValidateOtpRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetShareCode

func (o *UpgradedaadhaarxmlValidateOtpRequest) GetShareCode() string

GetShareCode returns the ShareCode field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpRequest) GetShareCodeOk

func (o *UpgradedaadhaarxmlValidateOtpRequest) GetShareCodeOk() (*string, bool)

GetShareCodeOk returns a tuple with the ShareCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) HasConsent

HasConsent returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) HasGeneratePdf

func (o *UpgradedaadhaarxmlValidateOtpRequest) HasGeneratePdf() bool

HasGeneratePdf returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) HasGenerateXml

func (o *UpgradedaadhaarxmlValidateOtpRequest) HasGenerateXml() bool

HasGenerateXml returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) HasInitiationTransactionId

func (o *UpgradedaadhaarxmlValidateOtpRequest) HasInitiationTransactionId() bool

HasInitiationTransactionId returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) HasOtp

HasOtp returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) HasPurpose

HasPurpose returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) HasReferenceId

func (o *UpgradedaadhaarxmlValidateOtpRequest) HasReferenceId() bool

HasReferenceId returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpRequest) HasShareCode

func (o *UpgradedaadhaarxmlValidateOtpRequest) HasShareCode() bool

HasShareCode returns a boolean if a field has been set.

func (UpgradedaadhaarxmlValidateOtpRequest) MarshalJSON

func (o UpgradedaadhaarxmlValidateOtpRequest) MarshalJSON() ([]byte, error)

func (*UpgradedaadhaarxmlValidateOtpRequest) SetConsent

func (o *UpgradedaadhaarxmlValidateOtpRequest) SetConsent(v bool)

SetConsent gets a reference to the given bool and assigns it to the Consent field.

func (*UpgradedaadhaarxmlValidateOtpRequest) SetGeneratePdf

func (o *UpgradedaadhaarxmlValidateOtpRequest) SetGeneratePdf(v bool)

SetGeneratePdf gets a reference to the given bool and assigns it to the GeneratePdf field.

func (*UpgradedaadhaarxmlValidateOtpRequest) SetGenerateXml

func (o *UpgradedaadhaarxmlValidateOtpRequest) SetGenerateXml(v bool)

SetGenerateXml gets a reference to the given bool and assigns it to the GenerateXml field.

func (*UpgradedaadhaarxmlValidateOtpRequest) SetInitiationTransactionId

func (o *UpgradedaadhaarxmlValidateOtpRequest) SetInitiationTransactionId(v string)

SetInitiationTransactionId gets a reference to the given string and assigns it to the InitiationTransactionId field.

func (*UpgradedaadhaarxmlValidateOtpRequest) SetOtp

SetOtp gets a reference to the given string and assigns it to the Otp field.

func (*UpgradedaadhaarxmlValidateOtpRequest) SetPurpose

SetPurpose gets a reference to the given string and assigns it to the Purpose field.

func (*UpgradedaadhaarxmlValidateOtpRequest) SetReferenceId

func (o *UpgradedaadhaarxmlValidateOtpRequest) SetReferenceId(v string)

SetReferenceId gets a reference to the given string and assigns it to the ReferenceId field.

func (*UpgradedaadhaarxmlValidateOtpRequest) SetShareCode

func (o *UpgradedaadhaarxmlValidateOtpRequest) SetShareCode(v string)

SetShareCode gets a reference to the given string and assigns it to the ShareCode field.

type UpgradedaadhaarxmlValidateOtpResponse added in v1.0.1

type UpgradedaadhaarxmlValidateOtpResponse struct {
	DecentroTxnId *string                                    `json:"decentroTxnId,omitempty"`
	Status        *string                                    `json:"status,omitempty"`
	ResponseCode  *string                                    `json:"responseCode,omitempty"`
	Message       *string                                    `json:"message,omitempty"`
	Data          *UpgradedaadhaarxmlValidateOtpResponseData `json:"data,omitempty"`
	ResponseKey   *string                                    `json:"responseKey,omitempty"`
}

UpgradedaadhaarxmlValidateOtpResponse struct for UpgradedaadhaarxmlValidateOtpResponse

func NewUpgradedaadhaarxmlValidateOtpResponse added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtpResponse() *UpgradedaadhaarxmlValidateOtpResponse

NewUpgradedaadhaarxmlValidateOtpResponse instantiates a new UpgradedaadhaarxmlValidateOtpResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpgradedaadhaarxmlValidateOtpResponseWithDefaults added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtpResponseWithDefaults() *UpgradedaadhaarxmlValidateOtpResponse

NewUpgradedaadhaarxmlValidateOtpResponseWithDefaults instantiates a new UpgradedaadhaarxmlValidateOtpResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpgradedaadhaarxmlValidateOtpResponse) GetData added in v1.0.1

GetData returns the Data field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponse) GetDataOk added in v1.0.1

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponse) GetDecentroTxnId added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponse) GetDecentroTxnIdOk added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponse) GetMessage added in v1.0.1

GetMessage returns the Message field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponse) GetMessageOk added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponse) GetResponseCode added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponse) GetResponseCodeOk added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponse) GetResponseKey added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) GetResponseKey() string

GetResponseKey returns the ResponseKey field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponse) GetResponseKeyOk added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) GetResponseKeyOk() (*string, bool)

GetResponseKeyOk returns a tuple with the ResponseKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponse) GetStatus added in v1.0.1

GetStatus returns the Status field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponse) GetStatusOk added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponse) HasData added in v1.0.1

HasData returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponse) HasDecentroTxnId added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponse) HasMessage added in v1.0.1

HasMessage returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponse) HasResponseCode added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponse) HasResponseKey added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) HasResponseKey() bool

HasResponseKey returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponse) HasStatus added in v1.0.1

HasStatus returns a boolean if a field has been set.

func (UpgradedaadhaarxmlValidateOtpResponse) MarshalJSON added in v1.0.1

func (o UpgradedaadhaarxmlValidateOtpResponse) MarshalJSON() ([]byte, error)

func (*UpgradedaadhaarxmlValidateOtpResponse) SetData added in v1.0.1

SetData gets a reference to the given UpgradedaadhaarxmlValidateOtpResponseData and assigns it to the Data field.

func (*UpgradedaadhaarxmlValidateOtpResponse) SetDecentroTxnId added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*UpgradedaadhaarxmlValidateOtpResponse) SetMessage added in v1.0.1

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*UpgradedaadhaarxmlValidateOtpResponse) SetResponseCode added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*UpgradedaadhaarxmlValidateOtpResponse) SetResponseKey added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponse) SetResponseKey(v string)

SetResponseKey gets a reference to the given string and assigns it to the ResponseKey field.

func (*UpgradedaadhaarxmlValidateOtpResponse) SetStatus added in v1.0.1

SetStatus gets a reference to the given string and assigns it to the Status field.

type UpgradedaadhaarxmlValidateOtpResponseData added in v1.0.1

type UpgradedaadhaarxmlValidateOtpResponseData struct {
	AadhaarReferenceNumber *string                                                   `json:"aadhaarReferenceNumber,omitempty"`
	ProofOfIdentity        *UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity `json:"proofOfIdentity,omitempty"`
	ProofOfAddress         *UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress  `json:"proofOfAddress,omitempty"`
	Image                  *string                                                   `json:"image,omitempty"`
}

UpgradedaadhaarxmlValidateOtpResponseData struct for UpgradedaadhaarxmlValidateOtpResponseData

func NewUpgradedaadhaarxmlValidateOtpResponseData added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtpResponseData() *UpgradedaadhaarxmlValidateOtpResponseData

NewUpgradedaadhaarxmlValidateOtpResponseData instantiates a new UpgradedaadhaarxmlValidateOtpResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpgradedaadhaarxmlValidateOtpResponseDataWithDefaults added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtpResponseDataWithDefaults() *UpgradedaadhaarxmlValidateOtpResponseData

NewUpgradedaadhaarxmlValidateOtpResponseDataWithDefaults instantiates a new UpgradedaadhaarxmlValidateOtpResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpgradedaadhaarxmlValidateOtpResponseData) GetAadhaarReferenceNumber added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponseData) GetAadhaarReferenceNumber() string

GetAadhaarReferenceNumber returns the AadhaarReferenceNumber field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseData) GetAadhaarReferenceNumberOk added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponseData) GetAadhaarReferenceNumberOk() (*string, bool)

GetAadhaarReferenceNumberOk returns a tuple with the AadhaarReferenceNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseData) GetImage added in v1.0.1

GetImage returns the Image field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseData) GetImageOk added in v1.0.1

GetImageOk returns a tuple with the Image field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseData) GetProofOfAddress added in v1.0.1

GetProofOfAddress returns the ProofOfAddress field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseData) GetProofOfAddressOk added in v1.0.1

GetProofOfAddressOk returns a tuple with the ProofOfAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseData) GetProofOfIdentity added in v1.0.1

GetProofOfIdentity returns the ProofOfIdentity field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseData) GetProofOfIdentityOk added in v1.0.1

GetProofOfIdentityOk returns a tuple with the ProofOfIdentity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseData) HasAadhaarReferenceNumber added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponseData) HasAadhaarReferenceNumber() bool

HasAadhaarReferenceNumber returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseData) HasImage added in v1.0.1

HasImage returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseData) HasProofOfAddress added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponseData) HasProofOfAddress() bool

HasProofOfAddress returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseData) HasProofOfIdentity added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponseData) HasProofOfIdentity() bool

HasProofOfIdentity returns a boolean if a field has been set.

func (UpgradedaadhaarxmlValidateOtpResponseData) MarshalJSON added in v1.0.1

func (*UpgradedaadhaarxmlValidateOtpResponseData) SetAadhaarReferenceNumber added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponseData) SetAadhaarReferenceNumber(v string)

SetAadhaarReferenceNumber gets a reference to the given string and assigns it to the AadhaarReferenceNumber field.

func (*UpgradedaadhaarxmlValidateOtpResponseData) SetImage added in v1.0.1

SetImage gets a reference to the given string and assigns it to the Image field.

func (*UpgradedaadhaarxmlValidateOtpResponseData) SetProofOfAddress added in v1.0.1

SetProofOfAddress gets a reference to the given UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress and assigns it to the ProofOfAddress field.

func (*UpgradedaadhaarxmlValidateOtpResponseData) SetProofOfIdentity added in v1.0.1

SetProofOfIdentity gets a reference to the given UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity and assigns it to the ProofOfIdentity field.

type UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress added in v1.0.1

type UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress struct {
	CareOf      *string `json:"careOf,omitempty"`
	Country     *string `json:"country,omitempty"`
	District    *string `json:"district,omitempty"`
	House       *string `json:"house,omitempty"`
	Landmark    *string `json:"landmark,omitempty"`
	Locality    *string `json:"locality,omitempty"`
	Pincode     *string `json:"pincode,omitempty"`
	PostOffice  *string `json:"postOffice,omitempty"`
	State       *string `json:"state,omitempty"`
	Street      *string `json:"street,omitempty"`
	SubDistrict *string `json:"subDistrict,omitempty"`
	Vtc         *string `json:"vtc,omitempty"`
}

UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress struct for UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress

func NewUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress() *UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress

NewUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress instantiates a new UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddressWithDefaults added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddressWithDefaults() *UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress

NewUpgradedaadhaarxmlValidateOtpResponseDataProofOfAddressWithDefaults instantiates a new UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetCareOf added in v1.0.1

GetCareOf returns the CareOf field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetCareOfOk added in v1.0.1

GetCareOfOk returns a tuple with the CareOf field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetCountry added in v1.0.1

GetCountry returns the Country field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetCountryOk added in v1.0.1

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetDistrict added in v1.0.1

GetDistrict returns the District field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetDistrictOk added in v1.0.1

GetDistrictOk returns a tuple with the District field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetHouse added in v1.0.1

GetHouse returns the House field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetHouseOk added in v1.0.1

GetHouseOk returns a tuple with the House field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetLandmark added in v1.0.1

GetLandmark returns the Landmark field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetLandmarkOk added in v1.0.1

GetLandmarkOk returns a tuple with the Landmark field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetLocality added in v1.0.1

GetLocality returns the Locality field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetLocalityOk added in v1.0.1

GetLocalityOk returns a tuple with the Locality field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetPincode added in v1.0.1

GetPincode returns the Pincode field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetPincodeOk added in v1.0.1

GetPincodeOk returns a tuple with the Pincode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetPostOffice added in v1.0.1

GetPostOffice returns the PostOffice field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetPostOfficeOk added in v1.0.1

GetPostOfficeOk returns a tuple with the PostOffice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetState added in v1.0.1

GetState returns the State field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetStateOk added in v1.0.1

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetStreet added in v1.0.1

GetStreet returns the Street field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetStreetOk added in v1.0.1

GetStreetOk returns a tuple with the Street field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetSubDistrict added in v1.0.1

GetSubDistrict returns the SubDistrict field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetSubDistrictOk added in v1.0.1

GetSubDistrictOk returns a tuple with the SubDistrict field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetVtc added in v1.0.1

GetVtc returns the Vtc field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) GetVtcOk added in v1.0.1

GetVtcOk returns a tuple with the Vtc field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) HasCareOf added in v1.0.1

HasCareOf returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) HasCountry added in v1.0.1

HasCountry returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) HasDistrict added in v1.0.1

HasDistrict returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) HasHouse added in v1.0.1

HasHouse returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) HasLandmark added in v1.0.1

HasLandmark returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) HasLocality added in v1.0.1

HasLocality returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) HasPincode added in v1.0.1

HasPincode returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) HasPostOffice added in v1.0.1

HasPostOffice returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) HasState added in v1.0.1

HasState returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) HasStreet added in v1.0.1

HasStreet returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) HasSubDistrict added in v1.0.1

HasSubDistrict returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) HasVtc added in v1.0.1

HasVtc returns a boolean if a field has been set.

func (UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) MarshalJSON added in v1.0.1

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) SetCareOf added in v1.0.1

SetCareOf gets a reference to the given string and assigns it to the CareOf field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) SetCountry added in v1.0.1

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) SetDistrict added in v1.0.1

SetDistrict gets a reference to the given string and assigns it to the District field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) SetHouse added in v1.0.1

SetHouse gets a reference to the given string and assigns it to the House field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) SetLandmark added in v1.0.1

SetLandmark gets a reference to the given string and assigns it to the Landmark field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) SetLocality added in v1.0.1

SetLocality gets a reference to the given string and assigns it to the Locality field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) SetPincode added in v1.0.1

SetPincode gets a reference to the given string and assigns it to the Pincode field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) SetPostOffice added in v1.0.1

SetPostOffice gets a reference to the given string and assigns it to the PostOffice field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) SetState added in v1.0.1

SetState gets a reference to the given string and assigns it to the State field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) SetStreet added in v1.0.1

SetStreet gets a reference to the given string and assigns it to the Street field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) SetSubDistrict added in v1.0.1

SetSubDistrict gets a reference to the given string and assigns it to the SubDistrict field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfAddress) SetVtc added in v1.0.1

SetVtc gets a reference to the given string and assigns it to the Vtc field.

type UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity added in v1.0.1

type UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity struct {
	Dob                *string `json:"dob,omitempty"`
	HashedEmail        *string `json:"hashedEmail,omitempty"`
	Gender             *string `json:"gender,omitempty"`
	HashedMobileNumber *string `json:"hashedMobileNumber,omitempty"`
	Name               *string `json:"name,omitempty"`
}

UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity struct for UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity

func NewUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity() *UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity

NewUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity instantiates a new UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentityWithDefaults added in v1.0.1

func NewUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentityWithDefaults() *UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity

NewUpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentityWithDefaults instantiates a new UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) GetDob added in v1.0.1

GetDob returns the Dob field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) GetDobOk added in v1.0.1

GetDobOk returns a tuple with the Dob field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) GetGender added in v1.0.1

GetGender returns the Gender field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) GetGenderOk added in v1.0.1

GetGenderOk returns a tuple with the Gender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) GetHashedEmail added in v1.0.1

GetHashedEmail returns the HashedEmail field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) GetHashedEmailOk added in v1.0.1

GetHashedEmailOk returns a tuple with the HashedEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) GetHashedMobileNumber added in v1.0.1

GetHashedMobileNumber returns the HashedMobileNumber field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) GetHashedMobileNumberOk added in v1.0.1

func (o *UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) GetHashedMobileNumberOk() (*string, bool)

GetHashedMobileNumberOk returns a tuple with the HashedMobileNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) GetName added in v1.0.1

GetName returns the Name field value if set, zero value otherwise.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) GetNameOk added in v1.0.1

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) HasDob added in v1.0.1

HasDob returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) HasGender added in v1.0.1

HasGender returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) HasHashedEmail added in v1.0.1

HasHashedEmail returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) HasHashedMobileNumber added in v1.0.1

HasHashedMobileNumber returns a boolean if a field has been set.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) HasName added in v1.0.1

HasName returns a boolean if a field has been set.

func (UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) MarshalJSON added in v1.0.1

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) SetDob added in v1.0.1

SetDob gets a reference to the given string and assigns it to the Dob field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) SetGender added in v1.0.1

SetGender gets a reference to the given string and assigns it to the Gender field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) SetHashedEmail added in v1.0.1

SetHashedEmail gets a reference to the given string and assigns it to the HashedEmail field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) SetHashedMobileNumber added in v1.0.1

SetHashedMobileNumber gets a reference to the given string and assigns it to the HashedMobileNumber field.

func (*UpgradedaadhaarxmlValidateOtpResponseDataProofOfIdentity) SetName added in v1.0.1

SetName gets a reference to the given string and assigns it to the Name field.

type Validate400Response

type Validate400Response struct {
	Status            *string                   `json:"status,omitempty"`
	KycStatus         *string                   `json:"kycStatus,omitempty"`
	Error             *Validate400ResponseError `json:"error,omitempty"`
	RequestTimestamp  *string                   `json:"requestTimestamp,omitempty"`
	ResponseTimestamp *string                   `json:"responseTimestamp,omitempty"`
	DecentroTxnId     *string                   `json:"decentroTxnId,omitempty"`
}

Validate400Response struct for Validate400Response

func NewValidate400Response

func NewValidate400Response() *Validate400Response

NewValidate400Response instantiates a new Validate400Response object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidate400ResponseWithDefaults

func NewValidate400ResponseWithDefaults() *Validate400Response

NewValidate400ResponseWithDefaults instantiates a new Validate400Response object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Validate400Response) GetDecentroTxnId

func (o *Validate400Response) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*Validate400Response) GetDecentroTxnIdOk

func (o *Validate400Response) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Validate400Response) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*Validate400Response) GetErrorOk

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Validate400Response) GetKycStatus

func (o *Validate400Response) GetKycStatus() string

GetKycStatus returns the KycStatus field value if set, zero value otherwise.

func (*Validate400Response) GetKycStatusOk

func (o *Validate400Response) GetKycStatusOk() (*string, bool)

GetKycStatusOk returns a tuple with the KycStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Validate400Response) GetRequestTimestamp

func (o *Validate400Response) GetRequestTimestamp() string

GetRequestTimestamp returns the RequestTimestamp field value if set, zero value otherwise.

func (*Validate400Response) GetRequestTimestampOk

func (o *Validate400Response) GetRequestTimestampOk() (*string, bool)

GetRequestTimestampOk returns a tuple with the RequestTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Validate400Response) GetResponseTimestamp

func (o *Validate400Response) GetResponseTimestamp() string

GetResponseTimestamp returns the ResponseTimestamp field value if set, zero value otherwise.

func (*Validate400Response) GetResponseTimestampOk

func (o *Validate400Response) GetResponseTimestampOk() (*string, bool)

GetResponseTimestampOk returns a tuple with the ResponseTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Validate400Response) GetStatus

func (o *Validate400Response) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Validate400Response) GetStatusOk

func (o *Validate400Response) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Validate400Response) HasDecentroTxnId

func (o *Validate400Response) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*Validate400Response) HasError

func (o *Validate400Response) HasError() bool

HasError returns a boolean if a field has been set.

func (*Validate400Response) HasKycStatus

func (o *Validate400Response) HasKycStatus() bool

HasKycStatus returns a boolean if a field has been set.

func (*Validate400Response) HasRequestTimestamp

func (o *Validate400Response) HasRequestTimestamp() bool

HasRequestTimestamp returns a boolean if a field has been set.

func (*Validate400Response) HasResponseTimestamp

func (o *Validate400Response) HasResponseTimestamp() bool

HasResponseTimestamp returns a boolean if a field has been set.

func (*Validate400Response) HasStatus

func (o *Validate400Response) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Validate400Response) MarshalJSON

func (o Validate400Response) MarshalJSON() ([]byte, error)

func (*Validate400Response) SetDecentroTxnId

func (o *Validate400Response) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*Validate400Response) SetError

SetError gets a reference to the given Validate400ResponseError and assigns it to the Error field.

func (*Validate400Response) SetKycStatus

func (o *Validate400Response) SetKycStatus(v string)

SetKycStatus gets a reference to the given string and assigns it to the KycStatus field.

func (*Validate400Response) SetRequestTimestamp

func (o *Validate400Response) SetRequestTimestamp(v string)

SetRequestTimestamp gets a reference to the given string and assigns it to the RequestTimestamp field.

func (*Validate400Response) SetResponseTimestamp

func (o *Validate400Response) SetResponseTimestamp(v string)

SetResponseTimestamp gets a reference to the given string and assigns it to the ResponseTimestamp field.

func (*Validate400Response) SetStatus

func (o *Validate400Response) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type Validate400ResponseError

type Validate400ResponseError struct {
	Message      *string `json:"message,omitempty"`
	ResponseCode *string `json:"responseCode,omitempty"`
}

Validate400ResponseError struct for Validate400ResponseError

func NewValidate400ResponseError

func NewValidate400ResponseError() *Validate400ResponseError

NewValidate400ResponseError instantiates a new Validate400ResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidate400ResponseErrorWithDefaults

func NewValidate400ResponseErrorWithDefaults() *Validate400ResponseError

NewValidate400ResponseErrorWithDefaults instantiates a new Validate400ResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Validate400ResponseError) GetMessage

func (o *Validate400ResponseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*Validate400ResponseError) GetMessageOk

func (o *Validate400ResponseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Validate400ResponseError) GetResponseCode

func (o *Validate400ResponseError) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*Validate400ResponseError) GetResponseCodeOk

func (o *Validate400ResponseError) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Validate400ResponseError) HasMessage

func (o *Validate400ResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*Validate400ResponseError) HasResponseCode

func (o *Validate400ResponseError) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (Validate400ResponseError) MarshalJSON

func (o Validate400ResponseError) MarshalJSON() ([]byte, error)

func (*Validate400ResponseError) SetMessage

func (o *Validate400ResponseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*Validate400ResponseError) SetResponseCode

func (o *Validate400ResponseError) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

type ValidateRequest

type ValidateRequest struct {
	ReferenceId    string  `json:"reference_id"`
	DocumentType   string  `json:"document_type"`
	IdNumber       string  `json:"id_number"`
	Dob            *string `json:"dob,omitempty"`
	Consent        string  `json:"consent"`
	ConsentPurpose string  `json:"consent_purpose"`
	Name           *string `json:"name,omitempty"`
}

ValidateRequest struct for ValidateRequest

func NewValidateRequest

func NewValidateRequest(referenceId string, documentType string, idNumber string, consent string, consentPurpose string) *ValidateRequest

NewValidateRequest instantiates a new ValidateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateRequestWithDefaults

func NewValidateRequestWithDefaults() *ValidateRequest

NewValidateRequestWithDefaults instantiates a new ValidateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateRequest) GetConsent

func (o *ValidateRequest) GetConsent() string

GetConsent returns the Consent field value

func (*ValidateRequest) GetConsentOk

func (o *ValidateRequest) GetConsentOk() (*string, bool)

GetConsentOk returns a tuple with the Consent field value and a boolean to check if the value has been set.

func (*ValidateRequest) GetConsentPurpose

func (o *ValidateRequest) GetConsentPurpose() string

GetConsentPurpose returns the ConsentPurpose field value

func (*ValidateRequest) GetConsentPurposeOk

func (o *ValidateRequest) GetConsentPurposeOk() (*string, bool)

GetConsentPurposeOk returns a tuple with the ConsentPurpose field value and a boolean to check if the value has been set.

func (*ValidateRequest) GetDob

func (o *ValidateRequest) GetDob() string

GetDob returns the Dob field value if set, zero value otherwise.

func (*ValidateRequest) GetDobOk

func (o *ValidateRequest) GetDobOk() (*string, bool)

GetDobOk returns a tuple with the Dob field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateRequest) GetDocumentType

func (o *ValidateRequest) GetDocumentType() string

GetDocumentType returns the DocumentType field value

func (*ValidateRequest) GetDocumentTypeOk

func (o *ValidateRequest) GetDocumentTypeOk() (*string, bool)

GetDocumentTypeOk returns a tuple with the DocumentType field value and a boolean to check if the value has been set.

func (*ValidateRequest) GetIdNumber

func (o *ValidateRequest) GetIdNumber() string

GetIdNumber returns the IdNumber field value

func (*ValidateRequest) GetIdNumberOk

func (o *ValidateRequest) GetIdNumberOk() (*string, bool)

GetIdNumberOk returns a tuple with the IdNumber field value and a boolean to check if the value has been set.

func (*ValidateRequest) GetName

func (o *ValidateRequest) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ValidateRequest) GetNameOk

func (o *ValidateRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateRequest) GetReferenceId

func (o *ValidateRequest) GetReferenceId() string

GetReferenceId returns the ReferenceId field value

func (*ValidateRequest) GetReferenceIdOk

func (o *ValidateRequest) GetReferenceIdOk() (*string, bool)

GetReferenceIdOk returns a tuple with the ReferenceId field value and a boolean to check if the value has been set.

func (*ValidateRequest) HasDob

func (o *ValidateRequest) HasDob() bool

HasDob returns a boolean if a field has been set.

func (*ValidateRequest) HasName

func (o *ValidateRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (ValidateRequest) MarshalJSON

func (o ValidateRequest) MarshalJSON() ([]byte, error)

func (*ValidateRequest) SetConsent

func (o *ValidateRequest) SetConsent(v string)

SetConsent sets field value

func (*ValidateRequest) SetConsentPurpose

func (o *ValidateRequest) SetConsentPurpose(v string)

SetConsentPurpose sets field value

func (*ValidateRequest) SetDob

func (o *ValidateRequest) SetDob(v string)

SetDob gets a reference to the given string and assigns it to the Dob field.

func (*ValidateRequest) SetDocumentType

func (o *ValidateRequest) SetDocumentType(v string)

SetDocumentType sets field value

func (*ValidateRequest) SetIdNumber

func (o *ValidateRequest) SetIdNumber(v string)

SetIdNumber sets field value

func (*ValidateRequest) SetName

func (o *ValidateRequest) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ValidateRequest) SetReferenceId

func (o *ValidateRequest) SetReferenceId(v string)

SetReferenceId sets field value

type ValidateResponse

type ValidateResponse struct {
	KycStatus         *string                    `json:"kycStatus,omitempty"`
	Status            *string                    `json:"status,omitempty"`
	Message           *string                    `json:"message,omitempty"`
	KycResult         *ValidateResponseKycResult `json:"kycResult,omitempty"`
	ResponseCode      *string                    `json:"responseCode,omitempty"`
	RequestTimestamp  *string                    `json:"requestTimestamp,omitempty"`
	ResponseTimestamp *string                    `json:"responseTimestamp,omitempty"`
	DecentroTxnId     *string                    `json:"decentroTxnId,omitempty"`
	Error             *ValidateResponseError     `json:"error,omitempty"`
}

ValidateResponse struct for ValidateResponse

func NewValidateResponse

func NewValidateResponse() *ValidateResponse

NewValidateResponse instantiates a new ValidateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseWithDefaults

func NewValidateResponseWithDefaults() *ValidateResponse

NewValidateResponseWithDefaults instantiates a new ValidateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponse) GetDecentroTxnId

func (o *ValidateResponse) GetDecentroTxnId() string

GetDecentroTxnId returns the DecentroTxnId field value if set, zero value otherwise.

func (*ValidateResponse) GetDecentroTxnIdOk

func (o *ValidateResponse) GetDecentroTxnIdOk() (*string, bool)

GetDecentroTxnIdOk returns a tuple with the DecentroTxnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponse) GetError

GetError returns the Error field value if set, zero value otherwise.

func (*ValidateResponse) GetErrorOk

func (o *ValidateResponse) GetErrorOk() (*ValidateResponseError, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponse) GetKycResult

func (o *ValidateResponse) GetKycResult() ValidateResponseKycResult

GetKycResult returns the KycResult field value if set, zero value otherwise.

func (*ValidateResponse) GetKycResultOk

func (o *ValidateResponse) GetKycResultOk() (*ValidateResponseKycResult, bool)

GetKycResultOk returns a tuple with the KycResult field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponse) GetKycStatus

func (o *ValidateResponse) GetKycStatus() string

GetKycStatus returns the KycStatus field value if set, zero value otherwise.

func (*ValidateResponse) GetKycStatusOk

func (o *ValidateResponse) GetKycStatusOk() (*string, bool)

GetKycStatusOk returns a tuple with the KycStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponse) GetMessage

func (o *ValidateResponse) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ValidateResponse) GetMessageOk

func (o *ValidateResponse) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponse) GetRequestTimestamp

func (o *ValidateResponse) GetRequestTimestamp() string

GetRequestTimestamp returns the RequestTimestamp field value if set, zero value otherwise.

func (*ValidateResponse) GetRequestTimestampOk

func (o *ValidateResponse) GetRequestTimestampOk() (*string, bool)

GetRequestTimestampOk returns a tuple with the RequestTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponse) GetResponseCode

func (o *ValidateResponse) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*ValidateResponse) GetResponseCodeOk

func (o *ValidateResponse) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponse) GetResponseTimestamp

func (o *ValidateResponse) GetResponseTimestamp() string

GetResponseTimestamp returns the ResponseTimestamp field value if set, zero value otherwise.

func (*ValidateResponse) GetResponseTimestampOk

func (o *ValidateResponse) GetResponseTimestampOk() (*string, bool)

GetResponseTimestampOk returns a tuple with the ResponseTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponse) GetStatus

func (o *ValidateResponse) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*ValidateResponse) GetStatusOk

func (o *ValidateResponse) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponse) HasDecentroTxnId

func (o *ValidateResponse) HasDecentroTxnId() bool

HasDecentroTxnId returns a boolean if a field has been set.

func (*ValidateResponse) HasError

func (o *ValidateResponse) HasError() bool

HasError returns a boolean if a field has been set.

func (*ValidateResponse) HasKycResult

func (o *ValidateResponse) HasKycResult() bool

HasKycResult returns a boolean if a field has been set.

func (*ValidateResponse) HasKycStatus

func (o *ValidateResponse) HasKycStatus() bool

HasKycStatus returns a boolean if a field has been set.

func (*ValidateResponse) HasMessage

func (o *ValidateResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ValidateResponse) HasRequestTimestamp

func (o *ValidateResponse) HasRequestTimestamp() bool

HasRequestTimestamp returns a boolean if a field has been set.

func (*ValidateResponse) HasResponseCode

func (o *ValidateResponse) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (*ValidateResponse) HasResponseTimestamp

func (o *ValidateResponse) HasResponseTimestamp() bool

HasResponseTimestamp returns a boolean if a field has been set.

func (*ValidateResponse) HasStatus

func (o *ValidateResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ValidateResponse) MarshalJSON

func (o ValidateResponse) MarshalJSON() ([]byte, error)

func (*ValidateResponse) SetDecentroTxnId

func (o *ValidateResponse) SetDecentroTxnId(v string)

SetDecentroTxnId gets a reference to the given string and assigns it to the DecentroTxnId field.

func (*ValidateResponse) SetError

func (o *ValidateResponse) SetError(v ValidateResponseError)

SetError gets a reference to the given ValidateResponseError and assigns it to the Error field.

func (*ValidateResponse) SetKycResult

func (o *ValidateResponse) SetKycResult(v ValidateResponseKycResult)

SetKycResult gets a reference to the given ValidateResponseKycResult and assigns it to the KycResult field.

func (*ValidateResponse) SetKycStatus

func (o *ValidateResponse) SetKycStatus(v string)

SetKycStatus gets a reference to the given string and assigns it to the KycStatus field.

func (*ValidateResponse) SetMessage

func (o *ValidateResponse) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ValidateResponse) SetRequestTimestamp

func (o *ValidateResponse) SetRequestTimestamp(v string)

SetRequestTimestamp gets a reference to the given string and assigns it to the RequestTimestamp field.

func (*ValidateResponse) SetResponseCode

func (o *ValidateResponse) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

func (*ValidateResponse) SetResponseTimestamp

func (o *ValidateResponse) SetResponseTimestamp(v string)

SetResponseTimestamp gets a reference to the given string and assigns it to the ResponseTimestamp field.

func (*ValidateResponse) SetStatus

func (o *ValidateResponse) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type ValidateResponseError

type ValidateResponseError struct {
	Message      *string `json:"message,omitempty"`
	ResponseCode *string `json:"responseCode,omitempty"`
}

ValidateResponseError struct for ValidateResponseError

func NewValidateResponseError

func NewValidateResponseError() *ValidateResponseError

NewValidateResponseError instantiates a new ValidateResponseError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseErrorWithDefaults

func NewValidateResponseErrorWithDefaults() *ValidateResponseError

NewValidateResponseErrorWithDefaults instantiates a new ValidateResponseError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseError) GetMessage

func (o *ValidateResponseError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ValidateResponseError) GetMessageOk

func (o *ValidateResponseError) GetMessageOk() (*string, bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseError) GetResponseCode

func (o *ValidateResponseError) GetResponseCode() string

GetResponseCode returns the ResponseCode field value if set, zero value otherwise.

func (*ValidateResponseError) GetResponseCodeOk

func (o *ValidateResponseError) GetResponseCodeOk() (*string, bool)

GetResponseCodeOk returns a tuple with the ResponseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseError) HasMessage

func (o *ValidateResponseError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ValidateResponseError) HasResponseCode

func (o *ValidateResponseError) HasResponseCode() bool

HasResponseCode returns a boolean if a field has been set.

func (ValidateResponseError) MarshalJSON

func (o ValidateResponseError) MarshalJSON() ([]byte, error)

func (*ValidateResponseError) SetMessage

func (o *ValidateResponseError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ValidateResponseError) SetResponseCode

func (o *ValidateResponseError) SetResponseCode(v string)

SetResponseCode gets a reference to the given string and assigns it to the ResponseCode field.

type ValidateResponseKycResult

type ValidateResponseKycResult struct {
	IdNumber                                 *string                                            `json:"idNumber,omitempty"`
	IdStatus                                 *string                                            `json:"idStatus,omitempty"`
	Name                                     *string                                            `json:"name,omitempty"`
	LicenseType                              *string                                            `json:"licenseType,omitempty"`
	EntityName                               *string                                            `json:"entityName,omitempty"`
	Status                                   *string                                            `json:"status,omitempty"`
	PremissesAddress                         *ValidateResponseKycResultPremissesAddress         `json:"premissesAddress,omitempty"`
	Products                                 []ValidateResponseKycResultProductsInner           `json:"products,omitempty"`
	Address                                  *ValidateResponseKycResultAddress                  `json:"address,omitempty"`
	UamNumber                                *string                                            `json:"uamNumber,omitempty"`
	EnterpriseName                           *string                                            `json:"enterpriseName,omitempty"`
	MajorActivity                            *string                                            `json:"majorActivity,omitempty"`
	SocialCategory                           *string                                            `json:"socialCategory,omitempty"`
	EnterpriseType                           *string                                            `json:"enterpriseType,omitempty"`
	DateOfCommencement                       *string                                            `json:"dateOfCommencement,omitempty"`
	District                                 *string                                            `json:"district,omitempty"`
	State                                    *string                                            `json:"state,omitempty"`
	AppliedDate                              *string                                            `json:"appliedDate,omitempty"`
	ModifiedDate                             *string                                            `json:"modifiedDate,omitempty"`
	ExpiryDate                               *string                                            `json:"expiryDate,omitempty"`
	Nic2Digit                                *string                                            `json:"nic_2Digit,omitempty"`
	Nic4Digit                                *string                                            `json:"nic_4Digit,omitempty"`
	Nic5Digit                                *string                                            `json:"nic_5Digit,omitempty"`
	PanStatus                                *string                                            `json:"panStatus,omitempty"`
	LastName                                 *string                                            `json:"lastName,omitempty"`
	FirstName                                *string                                            `json:"firstName,omitempty"`
	FullName                                 *string                                            `json:"fullName,omitempty"`
	IdHolderTitle                            *string                                            `json:"idHolderTitle,omitempty"`
	IdLastUpdated                            *string                                            `json:"idLastUpdated,omitempty"`
	AadhaarSeedingStatus                     *string                                            `json:"aadhaarSeedingStatus,omitempty"`
	Addresses                                []ValidateResponseKycResultAddressesInner          `json:"addresses,omitempty"`
	AllClassOfVehicle                        []ValidateResponseKycResultAllClassOfVehicleInner  `json:"allClassOfVehicle,omitempty"`
	DrivingLicenseNumber                     *string                                            `json:"drivingLicenseNumber,omitempty"`
	DateOfBirth                              *string                                            `json:"dateOfBirth,omitempty"`
	EndorseDate                              *string                                            `json:"endorseDate,omitempty"`
	EndorseNumber                            *string                                            `json:"endorseNumber,omitempty"`
	FatherOrHusbandName                      *string                                            `json:"fatherOrHusbandName,omitempty"`
	ValidFrom                                *string                                            `json:"validFrom,omitempty"`
	ValidTo                                  *string                                            `json:"validTo,omitempty"`
	EpicNo                                   *string                                            `json:"epicNo,omitempty"`
	NameInVernacular                         *string                                            `json:"nameInVernacular,omitempty"`
	Gender                                   *string                                            `json:"gender,omitempty"`
	Age                                      *float32                                           `json:"age,omitempty"`
	RelativeName                             *string                                            `json:"relativeName,omitempty"`
	RelativeNameInVernacular                 *string                                            `json:"relativeNameInVernacular,omitempty"`
	RelativeRelationType                     *string                                            `json:"relativeRelationType,omitempty"`
	HouseNumber                              *string                                            `json:"houseNumber,omitempty"`
	PartOrLocationInConstituency             *string                                            `json:"partOrLocationInConstituency,omitempty"`
	PartNumberOrLocationNumberInConstituency *string                                            `json:"partNumberOrLocationNumberInConstituency,omitempty"`
	ParliamentaryConstituency                *string                                            `json:"parliamentaryConstituency,omitempty"`
	AssemblyConstituency                     *string                                            `json:"assemblyConstituency,omitempty"`
	SectionOfConstituencyPart                *string                                            `json:"sectionOfConstituencyPart,omitempty"`
	CardSerialNumberInPollingList            *string                                            `json:"cardSerialNumberInPollingList,omitempty"`
	LastUpdateDate                           *string                                            `json:"lastUpdateDate,omitempty"`
	PollingBoothDetails                      *ValidateResponseKycResultPollingBoothDetails      `json:"pollingBoothDetails,omitempty"`
	EmailId                                  *string                                            `json:"emailId,omitempty"`
	MobileNumber                             *string                                            `json:"mobileNumber,omitempty"`
	StateCode                                *string                                            `json:"stateCode,omitempty"`
	PollingBoothCoordinates                  *string                                            `json:"pollingBoothCoordinates,omitempty"`
	PollingBoothAddress                      *string                                            `json:"pollingBoothAddress,omitempty"`
	PollingBoothNumber                       *string                                            `json:"pollingBoothNumber,omitempty"`
	Id                                       *string                                            `json:"id,omitempty"`
	BlacklistStatus                          *string                                            `json:"blacklistStatus,omitempty"`
	RegistrationDate                         *string                                            `json:"registrationDate,omitempty"`
	RegistrationLocation                     *string                                            `json:"registrationLocation,omitempty"`
	Class                                    *string                                            `json:"class,omitempty"`
	Maker                                    *string                                            `json:"maker,omitempty"`
	OwnerName                                *string                                            `json:"ownerName,omitempty"`
	ChassisNumber                            *string                                            `json:"chassisNumber,omitempty"`
	RegistrationNumber                       *string                                            `json:"registrationNumber,omitempty"`
	EngineNumber                             *string                                            `json:"engineNumber,omitempty"`
	FuelType                                 *string                                            `json:"fuelType,omitempty"`
	FitUpto                                  *string                                            `json:"fitUpto,omitempty"`
	InsuranceUpto                            *string                                            `json:"insuranceUpto,omitempty"`
	TaxUpto                                  *string                                            `json:"taxUpto,omitempty"`
	InsuranceDetails                         *string                                            `json:"insuranceDetails,omitempty"`
	InsuranceValidity                        *string                                            `json:"insuranceValidity,omitempty"`
	PermitType                               *string                                            `json:"permitType,omitempty"`
	PermitValidUpto                          *string                                            `json:"permitValidUpto,omitempty"`
	PollutionControlValidity                 *string                                            `json:"pollutionControlValidity,omitempty"`
	PollutionNorms                           *string                                            `json:"pollutionNorms,omitempty"`
	LicenseAddress                           *string                                            `json:"licenseAddress,omitempty"`
	RegistrationAddress                      *string                                            `json:"registrationAddress,omitempty"`
	OwnerFatherName                          *string                                            `json:"ownerFatherName,omitempty"`
	OwnerPresentAddress                      *string                                            `json:"ownerPresentAddress,omitempty"`
	BodyType                                 *string                                            `json:"bodyType,omitempty"`
	Category                                 *string                                            `json:"category,omitempty"`
	Color                                    *string                                            `json:"color,omitempty"`
	EngineCubicCapacity                      *string                                            `json:"engineCubicCapacity,omitempty"`
	NumberCylinders                          *string                                            `json:"numberCylinders,omitempty"`
	UnladenWeight                            *string                                            `json:"unladenWeight,omitempty"`
	GrossWeight                              *string                                            `json:"grossWeight,omitempty"`
	Wheelbase                                *string                                            `json:"wheelbase,omitempty"`
	ManufacturedMonthYear                    *string                                            `json:"manufacturedMonthYear,omitempty"`
	MakerDescription                         *string                                            `json:"makerDescription,omitempty"`
	NocDetails                               *string                                            `json:"nocDetails,omitempty"`
	NormsDescription                         *string                                            `json:"normsDescription,omitempty"`
	Financier                                *string                                            `json:"financier,omitempty"`
	PermitIssueDate                          *string                                            `json:"permitIssueDate,omitempty"`
	PermitNumber                             *string                                            `json:"permitNumber,omitempty"`
	PermitValidFrom                          *string                                            `json:"permitValidFrom,omitempty"`
	SeatingCapacity                          *string                                            `json:"seatingCapacity,omitempty"`
	SleepingCapacity                         *string                                            `json:"sleepingCapacity,omitempty"`
	StandingCapacity                         *string                                            `json:"standingCapacity,omitempty"`
	StatusAsOn                               *string                                            `json:"statusAsOn,omitempty"`
	PrimaryBusinessContact                   *ValidateResponseKycResultPrimaryBusinessContact   `json:"primaryBusinessContact,omitempty"`
	StateJurisdiction                        *string                                            `json:"stateJurisdiction,omitempty"`
	StateJurisdictionCode                    *string                                            `json:"stateJurisdictionCode,omitempty"`
	TaxpayerType                             *string                                            `json:"taxpayerType,omitempty"`
	ConstitutionOfBusiness                   *string                                            `json:"constitutionOfBusiness,omitempty"`
	GstnStatus                               *string                                            `json:"gstnStatus,omitempty"`
	TradeName                                *string                                            `json:"tradeName,omitempty"`
	Gstin                                    *string                                            `json:"gstin,omitempty"`
	AdditionalPlacesOfBusinessInState        []string                                           `json:"additionalPlacesOfBusinessInState,omitempty"`
	LegalName                                *string                                            `json:"legalName,omitempty"`
	NatureOfBusiness                         []string                                           `json:"natureOfBusiness,omitempty"`
	CentralJurisdiction                      *string                                            `json:"centralJurisdiction,omitempty"`
	CentralJurisdictionCode                  *string                                            `json:"centralJurisdictionCode,omitempty"`
	Pan                                      *string                                            `json:"pan,omitempty"`
	AuthorizedSignatories                    *string                                            `json:"authorizedSignatories,omitempty"`
	ComplianceRating                         *string                                            `json:"complianceRating,omitempty"`
	Cxdt                                     *string                                            `json:"cxdt,omitempty"`
	BusinessDetails                          []ValidateResponseKycResultBusinessDetailsInner    `json:"businessDetails,omitempty"`
	AnnualAggregateTurnover                  *string                                            `json:"annualAggregateTurnover,omitempty"`
	MandatoryEInvoicing                      *string                                            `json:"mandatoryEInvoicing,omitempty"`
	GrossTotalIncome                         *string                                            `json:"grossTotalIncome,omitempty"`
	GrossTotalIncomeFinancialYear            *string                                            `json:"grossTotalIncomeFinancialYear,omitempty"`
	IsFieldVisitConducted                    *string                                            `json:"isFieldVisitConducted,omitempty"`
	FilingStatus                             []ValidateResponseKycResultFilingStatusInner       `json:"filingStatus,omitempty"`
	Directors                                *ValidateResponseKycResultDirectors                `json:"directors,omitempty"`
	CompanyMasterData                        *ValidateResponseKycResultCompanyMasterData        `json:"companyMasterData,omitempty"`
	Charges                                  []string                                           `json:"charges,omitempty"`
	LlpData                                  []string                                           `json:"llpData,omitempty"`
	CompanyData                              []string                                           `json:"companyData,omitempty"`
	DirectorData                             *ValidateResponseKycResultDirectorData             `json:"directorData,omitempty"`
	LlpMasterData                            *ValidateResponseKycResultLlpMasterData            `json:"llpMasterData,omitempty"`
	ForeignCompanyMasterData                 *ValidateResponseKycResultForeignCompanyMasterData `json:"foreignCompanyMasterData,omitempty"`
}

ValidateResponseKycResult struct for ValidateResponseKycResult

func NewValidateResponseKycResult

func NewValidateResponseKycResult() *ValidateResponseKycResult

NewValidateResponseKycResult instantiates a new ValidateResponseKycResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultWithDefaults

func NewValidateResponseKycResultWithDefaults() *ValidateResponseKycResult

NewValidateResponseKycResultWithDefaults instantiates a new ValidateResponseKycResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResult) GetAadhaarSeedingStatus

func (o *ValidateResponseKycResult) GetAadhaarSeedingStatus() string

GetAadhaarSeedingStatus returns the AadhaarSeedingStatus field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetAadhaarSeedingStatusOk

func (o *ValidateResponseKycResult) GetAadhaarSeedingStatusOk() (*string, bool)

GetAadhaarSeedingStatusOk returns a tuple with the AadhaarSeedingStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetAdditionalPlacesOfBusinessInState

func (o *ValidateResponseKycResult) GetAdditionalPlacesOfBusinessInState() []string

GetAdditionalPlacesOfBusinessInState returns the AdditionalPlacesOfBusinessInState field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetAdditionalPlacesOfBusinessInStateOk

func (o *ValidateResponseKycResult) GetAdditionalPlacesOfBusinessInStateOk() ([]string, bool)

GetAdditionalPlacesOfBusinessInStateOk returns a tuple with the AdditionalPlacesOfBusinessInState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetAddress

GetAddress returns the Address field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetAddressOk

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetAddresses

GetAddresses returns the Addresses field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetAddressesOk

GetAddressesOk returns a tuple with the Addresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetAge

func (o *ValidateResponseKycResult) GetAge() float32

GetAge returns the Age field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetAgeOk

func (o *ValidateResponseKycResult) GetAgeOk() (*float32, bool)

GetAgeOk returns a tuple with the Age field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetAllClassOfVehicle

GetAllClassOfVehicle returns the AllClassOfVehicle field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetAllClassOfVehicleOk

GetAllClassOfVehicleOk returns a tuple with the AllClassOfVehicle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetAnnualAggregateTurnover

func (o *ValidateResponseKycResult) GetAnnualAggregateTurnover() string

GetAnnualAggregateTurnover returns the AnnualAggregateTurnover field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetAnnualAggregateTurnoverOk

func (o *ValidateResponseKycResult) GetAnnualAggregateTurnoverOk() (*string, bool)

GetAnnualAggregateTurnoverOk returns a tuple with the AnnualAggregateTurnover field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetAppliedDate

func (o *ValidateResponseKycResult) GetAppliedDate() string

GetAppliedDate returns the AppliedDate field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetAppliedDateOk

func (o *ValidateResponseKycResult) GetAppliedDateOk() (*string, bool)

GetAppliedDateOk returns a tuple with the AppliedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetAssemblyConstituency

func (o *ValidateResponseKycResult) GetAssemblyConstituency() string

GetAssemblyConstituency returns the AssemblyConstituency field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetAssemblyConstituencyOk

func (o *ValidateResponseKycResult) GetAssemblyConstituencyOk() (*string, bool)

GetAssemblyConstituencyOk returns a tuple with the AssemblyConstituency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetAuthorizedSignatories

func (o *ValidateResponseKycResult) GetAuthorizedSignatories() string

GetAuthorizedSignatories returns the AuthorizedSignatories field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetAuthorizedSignatoriesOk

func (o *ValidateResponseKycResult) GetAuthorizedSignatoriesOk() (*string, bool)

GetAuthorizedSignatoriesOk returns a tuple with the AuthorizedSignatories field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetBlacklistStatus

func (o *ValidateResponseKycResult) GetBlacklistStatus() string

GetBlacklistStatus returns the BlacklistStatus field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetBlacklistStatusOk

func (o *ValidateResponseKycResult) GetBlacklistStatusOk() (*string, bool)

GetBlacklistStatusOk returns a tuple with the BlacklistStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetBodyType

func (o *ValidateResponseKycResult) GetBodyType() string

GetBodyType returns the BodyType field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetBodyTypeOk

func (o *ValidateResponseKycResult) GetBodyTypeOk() (*string, bool)

GetBodyTypeOk returns a tuple with the BodyType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetBusinessDetails

GetBusinessDetails returns the BusinessDetails field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetBusinessDetailsOk

GetBusinessDetailsOk returns a tuple with the BusinessDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetCardSerialNumberInPollingList

func (o *ValidateResponseKycResult) GetCardSerialNumberInPollingList() string

GetCardSerialNumberInPollingList returns the CardSerialNumberInPollingList field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetCardSerialNumberInPollingListOk

func (o *ValidateResponseKycResult) GetCardSerialNumberInPollingListOk() (*string, bool)

GetCardSerialNumberInPollingListOk returns a tuple with the CardSerialNumberInPollingList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetCategory

func (o *ValidateResponseKycResult) GetCategory() string

GetCategory returns the Category field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetCategoryOk

func (o *ValidateResponseKycResult) GetCategoryOk() (*string, bool)

GetCategoryOk returns a tuple with the Category field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetCentralJurisdiction

func (o *ValidateResponseKycResult) GetCentralJurisdiction() string

GetCentralJurisdiction returns the CentralJurisdiction field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetCentralJurisdictionCode

func (o *ValidateResponseKycResult) GetCentralJurisdictionCode() string

GetCentralJurisdictionCode returns the CentralJurisdictionCode field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetCentralJurisdictionCodeOk

func (o *ValidateResponseKycResult) GetCentralJurisdictionCodeOk() (*string, bool)

GetCentralJurisdictionCodeOk returns a tuple with the CentralJurisdictionCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetCentralJurisdictionOk

func (o *ValidateResponseKycResult) GetCentralJurisdictionOk() (*string, bool)

GetCentralJurisdictionOk returns a tuple with the CentralJurisdiction field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetCharges

func (o *ValidateResponseKycResult) GetCharges() []string

GetCharges returns the Charges field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetChargesOk

func (o *ValidateResponseKycResult) GetChargesOk() ([]string, bool)

GetChargesOk returns a tuple with the Charges field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetChassisNumber

func (o *ValidateResponseKycResult) GetChassisNumber() string

GetChassisNumber returns the ChassisNumber field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetChassisNumberOk

func (o *ValidateResponseKycResult) GetChassisNumberOk() (*string, bool)

GetChassisNumberOk returns a tuple with the ChassisNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetClass

func (o *ValidateResponseKycResult) GetClass() string

GetClass returns the Class field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetClassOk

func (o *ValidateResponseKycResult) GetClassOk() (*string, bool)

GetClassOk returns a tuple with the Class field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetColor

func (o *ValidateResponseKycResult) GetColor() string

GetColor returns the Color field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetColorOk

func (o *ValidateResponseKycResult) GetColorOk() (*string, bool)

GetColorOk returns a tuple with the Color field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetCompanyData

func (o *ValidateResponseKycResult) GetCompanyData() []string

GetCompanyData returns the CompanyData field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetCompanyDataOk

func (o *ValidateResponseKycResult) GetCompanyDataOk() ([]string, bool)

GetCompanyDataOk returns a tuple with the CompanyData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetCompanyMasterData

GetCompanyMasterData returns the CompanyMasterData field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetCompanyMasterDataOk

GetCompanyMasterDataOk returns a tuple with the CompanyMasterData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetComplianceRating

func (o *ValidateResponseKycResult) GetComplianceRating() string

GetComplianceRating returns the ComplianceRating field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetComplianceRatingOk

func (o *ValidateResponseKycResult) GetComplianceRatingOk() (*string, bool)

GetComplianceRatingOk returns a tuple with the ComplianceRating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetConstitutionOfBusiness

func (o *ValidateResponseKycResult) GetConstitutionOfBusiness() string

GetConstitutionOfBusiness returns the ConstitutionOfBusiness field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetConstitutionOfBusinessOk

func (o *ValidateResponseKycResult) GetConstitutionOfBusinessOk() (*string, bool)

GetConstitutionOfBusinessOk returns a tuple with the ConstitutionOfBusiness field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetCxdt

func (o *ValidateResponseKycResult) GetCxdt() string

GetCxdt returns the Cxdt field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetCxdtOk

func (o *ValidateResponseKycResult) GetCxdtOk() (*string, bool)

GetCxdtOk returns a tuple with the Cxdt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetDateOfBirth

func (o *ValidateResponseKycResult) GetDateOfBirth() string

GetDateOfBirth returns the DateOfBirth field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetDateOfBirthOk

func (o *ValidateResponseKycResult) GetDateOfBirthOk() (*string, bool)

GetDateOfBirthOk returns a tuple with the DateOfBirth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetDateOfCommencement

func (o *ValidateResponseKycResult) GetDateOfCommencement() string

GetDateOfCommencement returns the DateOfCommencement field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetDateOfCommencementOk

func (o *ValidateResponseKycResult) GetDateOfCommencementOk() (*string, bool)

GetDateOfCommencementOk returns a tuple with the DateOfCommencement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetDirectorData

GetDirectorData returns the DirectorData field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetDirectorDataOk

GetDirectorDataOk returns a tuple with the DirectorData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetDirectors

GetDirectors returns the Directors field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetDirectorsOk

GetDirectorsOk returns a tuple with the Directors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetDistrict

func (o *ValidateResponseKycResult) GetDistrict() string

GetDistrict returns the District field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetDistrictOk

func (o *ValidateResponseKycResult) GetDistrictOk() (*string, bool)

GetDistrictOk returns a tuple with the District field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetDrivingLicenseNumber

func (o *ValidateResponseKycResult) GetDrivingLicenseNumber() string

GetDrivingLicenseNumber returns the DrivingLicenseNumber field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetDrivingLicenseNumberOk

func (o *ValidateResponseKycResult) GetDrivingLicenseNumberOk() (*string, bool)

GetDrivingLicenseNumberOk returns a tuple with the DrivingLicenseNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetEmailId

func (o *ValidateResponseKycResult) GetEmailId() string

GetEmailId returns the EmailId field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetEmailIdOk

func (o *ValidateResponseKycResult) GetEmailIdOk() (*string, bool)

GetEmailIdOk returns a tuple with the EmailId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetEndorseDate

func (o *ValidateResponseKycResult) GetEndorseDate() string

GetEndorseDate returns the EndorseDate field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetEndorseDateOk

func (o *ValidateResponseKycResult) GetEndorseDateOk() (*string, bool)

GetEndorseDateOk returns a tuple with the EndorseDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetEndorseNumber

func (o *ValidateResponseKycResult) GetEndorseNumber() string

GetEndorseNumber returns the EndorseNumber field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetEndorseNumberOk

func (o *ValidateResponseKycResult) GetEndorseNumberOk() (*string, bool)

GetEndorseNumberOk returns a tuple with the EndorseNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetEngineCubicCapacity

func (o *ValidateResponseKycResult) GetEngineCubicCapacity() string

GetEngineCubicCapacity returns the EngineCubicCapacity field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetEngineCubicCapacityOk

func (o *ValidateResponseKycResult) GetEngineCubicCapacityOk() (*string, bool)

GetEngineCubicCapacityOk returns a tuple with the EngineCubicCapacity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetEngineNumber

func (o *ValidateResponseKycResult) GetEngineNumber() string

GetEngineNumber returns the EngineNumber field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetEngineNumberOk

func (o *ValidateResponseKycResult) GetEngineNumberOk() (*string, bool)

GetEngineNumberOk returns a tuple with the EngineNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetEnterpriseName

func (o *ValidateResponseKycResult) GetEnterpriseName() string

GetEnterpriseName returns the EnterpriseName field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetEnterpriseNameOk

func (o *ValidateResponseKycResult) GetEnterpriseNameOk() (*string, bool)

GetEnterpriseNameOk returns a tuple with the EnterpriseName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetEnterpriseType

func (o *ValidateResponseKycResult) GetEnterpriseType() string

GetEnterpriseType returns the EnterpriseType field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetEnterpriseTypeOk

func (o *ValidateResponseKycResult) GetEnterpriseTypeOk() (*string, bool)

GetEnterpriseTypeOk returns a tuple with the EnterpriseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetEntityName

func (o *ValidateResponseKycResult) GetEntityName() string

GetEntityName returns the EntityName field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetEntityNameOk

func (o *ValidateResponseKycResult) GetEntityNameOk() (*string, bool)

GetEntityNameOk returns a tuple with the EntityName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetEpicNo

func (o *ValidateResponseKycResult) GetEpicNo() string

GetEpicNo returns the EpicNo field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetEpicNoOk

func (o *ValidateResponseKycResult) GetEpicNoOk() (*string, bool)

GetEpicNoOk returns a tuple with the EpicNo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetExpiryDate

func (o *ValidateResponseKycResult) GetExpiryDate() string

GetExpiryDate returns the ExpiryDate field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetExpiryDateOk

func (o *ValidateResponseKycResult) GetExpiryDateOk() (*string, bool)

GetExpiryDateOk returns a tuple with the ExpiryDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetFatherOrHusbandName

func (o *ValidateResponseKycResult) GetFatherOrHusbandName() string

GetFatherOrHusbandName returns the FatherOrHusbandName field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetFatherOrHusbandNameOk

func (o *ValidateResponseKycResult) GetFatherOrHusbandNameOk() (*string, bool)

GetFatherOrHusbandNameOk returns a tuple with the FatherOrHusbandName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetFilingStatus

GetFilingStatus returns the FilingStatus field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetFilingStatusOk

GetFilingStatusOk returns a tuple with the FilingStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetFinancier

func (o *ValidateResponseKycResult) GetFinancier() string

GetFinancier returns the Financier field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetFinancierOk

func (o *ValidateResponseKycResult) GetFinancierOk() (*string, bool)

GetFinancierOk returns a tuple with the Financier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetFirstName

func (o *ValidateResponseKycResult) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetFirstNameOk

func (o *ValidateResponseKycResult) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetFitUpto

func (o *ValidateResponseKycResult) GetFitUpto() string

GetFitUpto returns the FitUpto field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetFitUptoOk

func (o *ValidateResponseKycResult) GetFitUptoOk() (*string, bool)

GetFitUptoOk returns a tuple with the FitUpto field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetForeignCompanyMasterData

GetForeignCompanyMasterData returns the ForeignCompanyMasterData field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetForeignCompanyMasterDataOk

GetForeignCompanyMasterDataOk returns a tuple with the ForeignCompanyMasterData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetFuelType

func (o *ValidateResponseKycResult) GetFuelType() string

GetFuelType returns the FuelType field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetFuelTypeOk

func (o *ValidateResponseKycResult) GetFuelTypeOk() (*string, bool)

GetFuelTypeOk returns a tuple with the FuelType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetFullName

func (o *ValidateResponseKycResult) GetFullName() string

GetFullName returns the FullName field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetFullNameOk

func (o *ValidateResponseKycResult) GetFullNameOk() (*string, bool)

GetFullNameOk returns a tuple with the FullName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetGender

func (o *ValidateResponseKycResult) GetGender() string

GetGender returns the Gender field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetGenderOk

func (o *ValidateResponseKycResult) GetGenderOk() (*string, bool)

GetGenderOk returns a tuple with the Gender field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetGrossTotalIncome

func (o *ValidateResponseKycResult) GetGrossTotalIncome() string

GetGrossTotalIncome returns the GrossTotalIncome field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetGrossTotalIncomeFinancialYear

func (o *ValidateResponseKycResult) GetGrossTotalIncomeFinancialYear() string

GetGrossTotalIncomeFinancialYear returns the GrossTotalIncomeFinancialYear field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetGrossTotalIncomeFinancialYearOk

func (o *ValidateResponseKycResult) GetGrossTotalIncomeFinancialYearOk() (*string, bool)

GetGrossTotalIncomeFinancialYearOk returns a tuple with the GrossTotalIncomeFinancialYear field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetGrossTotalIncomeOk

func (o *ValidateResponseKycResult) GetGrossTotalIncomeOk() (*string, bool)

GetGrossTotalIncomeOk returns a tuple with the GrossTotalIncome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetGrossWeight

func (o *ValidateResponseKycResult) GetGrossWeight() string

GetGrossWeight returns the GrossWeight field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetGrossWeightOk

func (o *ValidateResponseKycResult) GetGrossWeightOk() (*string, bool)

GetGrossWeightOk returns a tuple with the GrossWeight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetGstin

func (o *ValidateResponseKycResult) GetGstin() string

GetGstin returns the Gstin field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetGstinOk

func (o *ValidateResponseKycResult) GetGstinOk() (*string, bool)

GetGstinOk returns a tuple with the Gstin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetGstnStatus

func (o *ValidateResponseKycResult) GetGstnStatus() string

GetGstnStatus returns the GstnStatus field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetGstnStatusOk

func (o *ValidateResponseKycResult) GetGstnStatusOk() (*string, bool)

GetGstnStatusOk returns a tuple with the GstnStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetHouseNumber

func (o *ValidateResponseKycResult) GetHouseNumber() string

GetHouseNumber returns the HouseNumber field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetHouseNumberOk

func (o *ValidateResponseKycResult) GetHouseNumberOk() (*string, bool)

GetHouseNumberOk returns a tuple with the HouseNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetId

func (o *ValidateResponseKycResult) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetIdHolderTitle

func (o *ValidateResponseKycResult) GetIdHolderTitle() string

GetIdHolderTitle returns the IdHolderTitle field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetIdHolderTitleOk

func (o *ValidateResponseKycResult) GetIdHolderTitleOk() (*string, bool)

GetIdHolderTitleOk returns a tuple with the IdHolderTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetIdLastUpdated

func (o *ValidateResponseKycResult) GetIdLastUpdated() string

GetIdLastUpdated returns the IdLastUpdated field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetIdLastUpdatedOk

func (o *ValidateResponseKycResult) GetIdLastUpdatedOk() (*string, bool)

GetIdLastUpdatedOk returns a tuple with the IdLastUpdated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetIdNumber

func (o *ValidateResponseKycResult) GetIdNumber() string

GetIdNumber returns the IdNumber field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetIdNumberOk

func (o *ValidateResponseKycResult) GetIdNumberOk() (*string, bool)

GetIdNumberOk returns a tuple with the IdNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetIdOk

func (o *ValidateResponseKycResult) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetIdStatus

func (o *ValidateResponseKycResult) GetIdStatus() string

GetIdStatus returns the IdStatus field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetIdStatusOk

func (o *ValidateResponseKycResult) GetIdStatusOk() (*string, bool)

GetIdStatusOk returns a tuple with the IdStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetInsuranceDetails

func (o *ValidateResponseKycResult) GetInsuranceDetails() string

GetInsuranceDetails returns the InsuranceDetails field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetInsuranceDetailsOk

func (o *ValidateResponseKycResult) GetInsuranceDetailsOk() (*string, bool)

GetInsuranceDetailsOk returns a tuple with the InsuranceDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetInsuranceUpto

func (o *ValidateResponseKycResult) GetInsuranceUpto() string

GetInsuranceUpto returns the InsuranceUpto field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetInsuranceUptoOk

func (o *ValidateResponseKycResult) GetInsuranceUptoOk() (*string, bool)

GetInsuranceUptoOk returns a tuple with the InsuranceUpto field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetInsuranceValidity

func (o *ValidateResponseKycResult) GetInsuranceValidity() string

GetInsuranceValidity returns the InsuranceValidity field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetInsuranceValidityOk

func (o *ValidateResponseKycResult) GetInsuranceValidityOk() (*string, bool)

GetInsuranceValidityOk returns a tuple with the InsuranceValidity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetIsFieldVisitConducted

func (o *ValidateResponseKycResult) GetIsFieldVisitConducted() string

GetIsFieldVisitConducted returns the IsFieldVisitConducted field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetIsFieldVisitConductedOk

func (o *ValidateResponseKycResult) GetIsFieldVisitConductedOk() (*string, bool)

GetIsFieldVisitConductedOk returns a tuple with the IsFieldVisitConducted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetLastName

func (o *ValidateResponseKycResult) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetLastNameOk

func (o *ValidateResponseKycResult) GetLastNameOk() (*string, bool)

GetLastNameOk returns a tuple with the LastName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetLastUpdateDate

func (o *ValidateResponseKycResult) GetLastUpdateDate() string

GetLastUpdateDate returns the LastUpdateDate field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetLastUpdateDateOk

func (o *ValidateResponseKycResult) GetLastUpdateDateOk() (*string, bool)

GetLastUpdateDateOk returns a tuple with the LastUpdateDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetLegalName

func (o *ValidateResponseKycResult) GetLegalName() string

GetLegalName returns the LegalName field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetLegalNameOk

func (o *ValidateResponseKycResult) GetLegalNameOk() (*string, bool)

GetLegalNameOk returns a tuple with the LegalName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetLicenseAddress

func (o *ValidateResponseKycResult) GetLicenseAddress() string

GetLicenseAddress returns the LicenseAddress field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetLicenseAddressOk

func (o *ValidateResponseKycResult) GetLicenseAddressOk() (*string, bool)

GetLicenseAddressOk returns a tuple with the LicenseAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetLicenseType

func (o *ValidateResponseKycResult) GetLicenseType() string

GetLicenseType returns the LicenseType field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetLicenseTypeOk

func (o *ValidateResponseKycResult) GetLicenseTypeOk() (*string, bool)

GetLicenseTypeOk returns a tuple with the LicenseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetLlpData

func (o *ValidateResponseKycResult) GetLlpData() []string

GetLlpData returns the LlpData field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetLlpDataOk

func (o *ValidateResponseKycResult) GetLlpDataOk() ([]string, bool)

GetLlpDataOk returns a tuple with the LlpData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetLlpMasterData

GetLlpMasterData returns the LlpMasterData field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetLlpMasterDataOk

GetLlpMasterDataOk returns a tuple with the LlpMasterData field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetMajorActivity

func (o *ValidateResponseKycResult) GetMajorActivity() string

GetMajorActivity returns the MajorActivity field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetMajorActivityOk

func (o *ValidateResponseKycResult) GetMajorActivityOk() (*string, bool)

GetMajorActivityOk returns a tuple with the MajorActivity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetMaker

func (o *ValidateResponseKycResult) GetMaker() string

GetMaker returns the Maker field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetMakerDescription

func (o *ValidateResponseKycResult) GetMakerDescription() string

GetMakerDescription returns the MakerDescription field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetMakerDescriptionOk

func (o *ValidateResponseKycResult) GetMakerDescriptionOk() (*string, bool)

GetMakerDescriptionOk returns a tuple with the MakerDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetMakerOk

func (o *ValidateResponseKycResult) GetMakerOk() (*string, bool)

GetMakerOk returns a tuple with the Maker field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetMandatoryEInvoicing

func (o *ValidateResponseKycResult) GetMandatoryEInvoicing() string

GetMandatoryEInvoicing returns the MandatoryEInvoicing field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetMandatoryEInvoicingOk

func (o *ValidateResponseKycResult) GetMandatoryEInvoicingOk() (*string, bool)

GetMandatoryEInvoicingOk returns a tuple with the MandatoryEInvoicing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetManufacturedMonthYear

func (o *ValidateResponseKycResult) GetManufacturedMonthYear() string

GetManufacturedMonthYear returns the ManufacturedMonthYear field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetManufacturedMonthYearOk

func (o *ValidateResponseKycResult) GetManufacturedMonthYearOk() (*string, bool)

GetManufacturedMonthYearOk returns a tuple with the ManufacturedMonthYear field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetMobileNumber

func (o *ValidateResponseKycResult) GetMobileNumber() string

GetMobileNumber returns the MobileNumber field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetMobileNumberOk

func (o *ValidateResponseKycResult) GetMobileNumberOk() (*string, bool)

GetMobileNumberOk returns a tuple with the MobileNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetModifiedDate

func (o *ValidateResponseKycResult) GetModifiedDate() string

GetModifiedDate returns the ModifiedDate field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetModifiedDateOk

func (o *ValidateResponseKycResult) GetModifiedDateOk() (*string, bool)

GetModifiedDateOk returns a tuple with the ModifiedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetName

func (o *ValidateResponseKycResult) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetNameInVernacular

func (o *ValidateResponseKycResult) GetNameInVernacular() string

GetNameInVernacular returns the NameInVernacular field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetNameInVernacularOk

func (o *ValidateResponseKycResult) GetNameInVernacularOk() (*string, bool)

GetNameInVernacularOk returns a tuple with the NameInVernacular field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetNameOk

func (o *ValidateResponseKycResult) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetNatureOfBusiness

func (o *ValidateResponseKycResult) GetNatureOfBusiness() []string

GetNatureOfBusiness returns the NatureOfBusiness field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetNatureOfBusinessOk

func (o *ValidateResponseKycResult) GetNatureOfBusinessOk() ([]string, bool)

GetNatureOfBusinessOk returns a tuple with the NatureOfBusiness field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetNic2Digit

func (o *ValidateResponseKycResult) GetNic2Digit() string

GetNic2Digit returns the Nic2Digit field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetNic2DigitOk

func (o *ValidateResponseKycResult) GetNic2DigitOk() (*string, bool)

GetNic2DigitOk returns a tuple with the Nic2Digit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetNic4Digit

func (o *ValidateResponseKycResult) GetNic4Digit() string

GetNic4Digit returns the Nic4Digit field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetNic4DigitOk

func (o *ValidateResponseKycResult) GetNic4DigitOk() (*string, bool)

GetNic4DigitOk returns a tuple with the Nic4Digit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetNic5Digit

func (o *ValidateResponseKycResult) GetNic5Digit() string

GetNic5Digit returns the Nic5Digit field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetNic5DigitOk

func (o *ValidateResponseKycResult) GetNic5DigitOk() (*string, bool)

GetNic5DigitOk returns a tuple with the Nic5Digit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetNocDetails

func (o *ValidateResponseKycResult) GetNocDetails() string

GetNocDetails returns the NocDetails field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetNocDetailsOk

func (o *ValidateResponseKycResult) GetNocDetailsOk() (*string, bool)

GetNocDetailsOk returns a tuple with the NocDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetNormsDescription

func (o *ValidateResponseKycResult) GetNormsDescription() string

GetNormsDescription returns the NormsDescription field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetNormsDescriptionOk

func (o *ValidateResponseKycResult) GetNormsDescriptionOk() (*string, bool)

GetNormsDescriptionOk returns a tuple with the NormsDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetNumberCylinders

func (o *ValidateResponseKycResult) GetNumberCylinders() string

GetNumberCylinders returns the NumberCylinders field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetNumberCylindersOk

func (o *ValidateResponseKycResult) GetNumberCylindersOk() (*string, bool)

GetNumberCylindersOk returns a tuple with the NumberCylinders field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetOwnerFatherName

func (o *ValidateResponseKycResult) GetOwnerFatherName() string

GetOwnerFatherName returns the OwnerFatherName field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetOwnerFatherNameOk

func (o *ValidateResponseKycResult) GetOwnerFatherNameOk() (*string, bool)

GetOwnerFatherNameOk returns a tuple with the OwnerFatherName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetOwnerName

func (o *ValidateResponseKycResult) GetOwnerName() string

GetOwnerName returns the OwnerName field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetOwnerNameOk

func (o *ValidateResponseKycResult) GetOwnerNameOk() (*string, bool)

GetOwnerNameOk returns a tuple with the OwnerName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetOwnerPresentAddress

func (o *ValidateResponseKycResult) GetOwnerPresentAddress() string

GetOwnerPresentAddress returns the OwnerPresentAddress field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetOwnerPresentAddressOk

func (o *ValidateResponseKycResult) GetOwnerPresentAddressOk() (*string, bool)

GetOwnerPresentAddressOk returns a tuple with the OwnerPresentAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPan

func (o *ValidateResponseKycResult) GetPan() string

GetPan returns the Pan field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPanOk

func (o *ValidateResponseKycResult) GetPanOk() (*string, bool)

GetPanOk returns a tuple with the Pan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPanStatus

func (o *ValidateResponseKycResult) GetPanStatus() string

GetPanStatus returns the PanStatus field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPanStatusOk

func (o *ValidateResponseKycResult) GetPanStatusOk() (*string, bool)

GetPanStatusOk returns a tuple with the PanStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetParliamentaryConstituency

func (o *ValidateResponseKycResult) GetParliamentaryConstituency() string

GetParliamentaryConstituency returns the ParliamentaryConstituency field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetParliamentaryConstituencyOk

func (o *ValidateResponseKycResult) GetParliamentaryConstituencyOk() (*string, bool)

GetParliamentaryConstituencyOk returns a tuple with the ParliamentaryConstituency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPartNumberOrLocationNumberInConstituency

func (o *ValidateResponseKycResult) GetPartNumberOrLocationNumberInConstituency() string

GetPartNumberOrLocationNumberInConstituency returns the PartNumberOrLocationNumberInConstituency field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPartNumberOrLocationNumberInConstituencyOk

func (o *ValidateResponseKycResult) GetPartNumberOrLocationNumberInConstituencyOk() (*string, bool)

GetPartNumberOrLocationNumberInConstituencyOk returns a tuple with the PartNumberOrLocationNumberInConstituency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPartOrLocationInConstituency

func (o *ValidateResponseKycResult) GetPartOrLocationInConstituency() string

GetPartOrLocationInConstituency returns the PartOrLocationInConstituency field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPartOrLocationInConstituencyOk

func (o *ValidateResponseKycResult) GetPartOrLocationInConstituencyOk() (*string, bool)

GetPartOrLocationInConstituencyOk returns a tuple with the PartOrLocationInConstituency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPermitIssueDate

func (o *ValidateResponseKycResult) GetPermitIssueDate() string

GetPermitIssueDate returns the PermitIssueDate field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPermitIssueDateOk

func (o *ValidateResponseKycResult) GetPermitIssueDateOk() (*string, bool)

GetPermitIssueDateOk returns a tuple with the PermitIssueDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPermitNumber

func (o *ValidateResponseKycResult) GetPermitNumber() string

GetPermitNumber returns the PermitNumber field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPermitNumberOk

func (o *ValidateResponseKycResult) GetPermitNumberOk() (*string, bool)

GetPermitNumberOk returns a tuple with the PermitNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPermitType

func (o *ValidateResponseKycResult) GetPermitType() string

GetPermitType returns the PermitType field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPermitTypeOk

func (o *ValidateResponseKycResult) GetPermitTypeOk() (*string, bool)

GetPermitTypeOk returns a tuple with the PermitType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPermitValidFrom

func (o *ValidateResponseKycResult) GetPermitValidFrom() string

GetPermitValidFrom returns the PermitValidFrom field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPermitValidFromOk

func (o *ValidateResponseKycResult) GetPermitValidFromOk() (*string, bool)

GetPermitValidFromOk returns a tuple with the PermitValidFrom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPermitValidUpto

func (o *ValidateResponseKycResult) GetPermitValidUpto() string

GetPermitValidUpto returns the PermitValidUpto field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPermitValidUptoOk

func (o *ValidateResponseKycResult) GetPermitValidUptoOk() (*string, bool)

GetPermitValidUptoOk returns a tuple with the PermitValidUpto field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPollingBoothAddress

func (o *ValidateResponseKycResult) GetPollingBoothAddress() string

GetPollingBoothAddress returns the PollingBoothAddress field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPollingBoothAddressOk

func (o *ValidateResponseKycResult) GetPollingBoothAddressOk() (*string, bool)

GetPollingBoothAddressOk returns a tuple with the PollingBoothAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPollingBoothCoordinates

func (o *ValidateResponseKycResult) GetPollingBoothCoordinates() string

GetPollingBoothCoordinates returns the PollingBoothCoordinates field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPollingBoothCoordinatesOk

func (o *ValidateResponseKycResult) GetPollingBoothCoordinatesOk() (*string, bool)

GetPollingBoothCoordinatesOk returns a tuple with the PollingBoothCoordinates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPollingBoothDetails

GetPollingBoothDetails returns the PollingBoothDetails field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPollingBoothDetailsOk

GetPollingBoothDetailsOk returns a tuple with the PollingBoothDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPollingBoothNumber

func (o *ValidateResponseKycResult) GetPollingBoothNumber() string

GetPollingBoothNumber returns the PollingBoothNumber field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPollingBoothNumberOk

func (o *ValidateResponseKycResult) GetPollingBoothNumberOk() (*string, bool)

GetPollingBoothNumberOk returns a tuple with the PollingBoothNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPollutionControlValidity

func (o *ValidateResponseKycResult) GetPollutionControlValidity() string

GetPollutionControlValidity returns the PollutionControlValidity field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPollutionControlValidityOk

func (o *ValidateResponseKycResult) GetPollutionControlValidityOk() (*string, bool)

GetPollutionControlValidityOk returns a tuple with the PollutionControlValidity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPollutionNorms

func (o *ValidateResponseKycResult) GetPollutionNorms() string

GetPollutionNorms returns the PollutionNorms field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPollutionNormsOk

func (o *ValidateResponseKycResult) GetPollutionNormsOk() (*string, bool)

GetPollutionNormsOk returns a tuple with the PollutionNorms field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPremissesAddress

GetPremissesAddress returns the PremissesAddress field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPremissesAddressOk

GetPremissesAddressOk returns a tuple with the PremissesAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetPrimaryBusinessContact

GetPrimaryBusinessContact returns the PrimaryBusinessContact field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetPrimaryBusinessContactOk

GetPrimaryBusinessContactOk returns a tuple with the PrimaryBusinessContact field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetProducts

GetProducts returns the Products field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetProductsOk

GetProductsOk returns a tuple with the Products field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetRegistrationAddress

func (o *ValidateResponseKycResult) GetRegistrationAddress() string

GetRegistrationAddress returns the RegistrationAddress field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetRegistrationAddressOk

func (o *ValidateResponseKycResult) GetRegistrationAddressOk() (*string, bool)

GetRegistrationAddressOk returns a tuple with the RegistrationAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetRegistrationDate

func (o *ValidateResponseKycResult) GetRegistrationDate() string

GetRegistrationDate returns the RegistrationDate field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetRegistrationDateOk

func (o *ValidateResponseKycResult) GetRegistrationDateOk() (*string, bool)

GetRegistrationDateOk returns a tuple with the RegistrationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetRegistrationLocation

func (o *ValidateResponseKycResult) GetRegistrationLocation() string

GetRegistrationLocation returns the RegistrationLocation field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetRegistrationLocationOk

func (o *ValidateResponseKycResult) GetRegistrationLocationOk() (*string, bool)

GetRegistrationLocationOk returns a tuple with the RegistrationLocation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetRegistrationNumber

func (o *ValidateResponseKycResult) GetRegistrationNumber() string

GetRegistrationNumber returns the RegistrationNumber field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetRegistrationNumberOk

func (o *ValidateResponseKycResult) GetRegistrationNumberOk() (*string, bool)

GetRegistrationNumberOk returns a tuple with the RegistrationNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetRelativeName

func (o *ValidateResponseKycResult) GetRelativeName() string

GetRelativeName returns the RelativeName field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetRelativeNameInVernacular

func (o *ValidateResponseKycResult) GetRelativeNameInVernacular() string

GetRelativeNameInVernacular returns the RelativeNameInVernacular field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetRelativeNameInVernacularOk

func (o *ValidateResponseKycResult) GetRelativeNameInVernacularOk() (*string, bool)

GetRelativeNameInVernacularOk returns a tuple with the RelativeNameInVernacular field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetRelativeNameOk

func (o *ValidateResponseKycResult) GetRelativeNameOk() (*string, bool)

GetRelativeNameOk returns a tuple with the RelativeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetRelativeRelationType

func (o *ValidateResponseKycResult) GetRelativeRelationType() string

GetRelativeRelationType returns the RelativeRelationType field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetRelativeRelationTypeOk

func (o *ValidateResponseKycResult) GetRelativeRelationTypeOk() (*string, bool)

GetRelativeRelationTypeOk returns a tuple with the RelativeRelationType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetSeatingCapacity

func (o *ValidateResponseKycResult) GetSeatingCapacity() string

GetSeatingCapacity returns the SeatingCapacity field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetSeatingCapacityOk

func (o *ValidateResponseKycResult) GetSeatingCapacityOk() (*string, bool)

GetSeatingCapacityOk returns a tuple with the SeatingCapacity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetSectionOfConstituencyPart

func (o *ValidateResponseKycResult) GetSectionOfConstituencyPart() string

GetSectionOfConstituencyPart returns the SectionOfConstituencyPart field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetSectionOfConstituencyPartOk

func (o *ValidateResponseKycResult) GetSectionOfConstituencyPartOk() (*string, bool)

GetSectionOfConstituencyPartOk returns a tuple with the SectionOfConstituencyPart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetSleepingCapacity

func (o *ValidateResponseKycResult) GetSleepingCapacity() string

GetSleepingCapacity returns the SleepingCapacity field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetSleepingCapacityOk

func (o *ValidateResponseKycResult) GetSleepingCapacityOk() (*string, bool)

GetSleepingCapacityOk returns a tuple with the SleepingCapacity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetSocialCategory

func (o *ValidateResponseKycResult) GetSocialCategory() string

GetSocialCategory returns the SocialCategory field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetSocialCategoryOk

func (o *ValidateResponseKycResult) GetSocialCategoryOk() (*string, bool)

GetSocialCategoryOk returns a tuple with the SocialCategory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetStandingCapacity

func (o *ValidateResponseKycResult) GetStandingCapacity() string

GetStandingCapacity returns the StandingCapacity field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetStandingCapacityOk

func (o *ValidateResponseKycResult) GetStandingCapacityOk() (*string, bool)

GetStandingCapacityOk returns a tuple with the StandingCapacity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetState

func (o *ValidateResponseKycResult) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetStateCode

func (o *ValidateResponseKycResult) GetStateCode() string

GetStateCode returns the StateCode field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetStateCodeOk

func (o *ValidateResponseKycResult) GetStateCodeOk() (*string, bool)

GetStateCodeOk returns a tuple with the StateCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetStateJurisdiction

func (o *ValidateResponseKycResult) GetStateJurisdiction() string

GetStateJurisdiction returns the StateJurisdiction field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetStateJurisdictionCode

func (o *ValidateResponseKycResult) GetStateJurisdictionCode() string

GetStateJurisdictionCode returns the StateJurisdictionCode field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetStateJurisdictionCodeOk

func (o *ValidateResponseKycResult) GetStateJurisdictionCodeOk() (*string, bool)

GetStateJurisdictionCodeOk returns a tuple with the StateJurisdictionCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetStateJurisdictionOk

func (o *ValidateResponseKycResult) GetStateJurisdictionOk() (*string, bool)

GetStateJurisdictionOk returns a tuple with the StateJurisdiction field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetStateOk

func (o *ValidateResponseKycResult) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetStatus

func (o *ValidateResponseKycResult) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetStatusAsOn

func (o *ValidateResponseKycResult) GetStatusAsOn() string

GetStatusAsOn returns the StatusAsOn field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetStatusAsOnOk

func (o *ValidateResponseKycResult) GetStatusAsOnOk() (*string, bool)

GetStatusAsOnOk returns a tuple with the StatusAsOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetStatusOk

func (o *ValidateResponseKycResult) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetTaxUpto

func (o *ValidateResponseKycResult) GetTaxUpto() string

GetTaxUpto returns the TaxUpto field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetTaxUptoOk

func (o *ValidateResponseKycResult) GetTaxUptoOk() (*string, bool)

GetTaxUptoOk returns a tuple with the TaxUpto field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetTaxpayerType

func (o *ValidateResponseKycResult) GetTaxpayerType() string

GetTaxpayerType returns the TaxpayerType field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetTaxpayerTypeOk

func (o *ValidateResponseKycResult) GetTaxpayerTypeOk() (*string, bool)

GetTaxpayerTypeOk returns a tuple with the TaxpayerType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetTradeName

func (o *ValidateResponseKycResult) GetTradeName() string

GetTradeName returns the TradeName field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetTradeNameOk

func (o *ValidateResponseKycResult) GetTradeNameOk() (*string, bool)

GetTradeNameOk returns a tuple with the TradeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetUamNumber

func (o *ValidateResponseKycResult) GetUamNumber() string

GetUamNumber returns the UamNumber field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetUamNumberOk

func (o *ValidateResponseKycResult) GetUamNumberOk() (*string, bool)

GetUamNumberOk returns a tuple with the UamNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetUnladenWeight

func (o *ValidateResponseKycResult) GetUnladenWeight() string

GetUnladenWeight returns the UnladenWeight field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetUnladenWeightOk

func (o *ValidateResponseKycResult) GetUnladenWeightOk() (*string, bool)

GetUnladenWeightOk returns a tuple with the UnladenWeight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetValidFrom

func (o *ValidateResponseKycResult) GetValidFrom() string

GetValidFrom returns the ValidFrom field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetValidFromOk

func (o *ValidateResponseKycResult) GetValidFromOk() (*string, bool)

GetValidFromOk returns a tuple with the ValidFrom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetValidTo

func (o *ValidateResponseKycResult) GetValidTo() string

GetValidTo returns the ValidTo field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetValidToOk

func (o *ValidateResponseKycResult) GetValidToOk() (*string, bool)

GetValidToOk returns a tuple with the ValidTo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) GetWheelbase

func (o *ValidateResponseKycResult) GetWheelbase() string

GetWheelbase returns the Wheelbase field value if set, zero value otherwise.

func (*ValidateResponseKycResult) GetWheelbaseOk

func (o *ValidateResponseKycResult) GetWheelbaseOk() (*string, bool)

GetWheelbaseOk returns a tuple with the Wheelbase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResult) HasAadhaarSeedingStatus

func (o *ValidateResponseKycResult) HasAadhaarSeedingStatus() bool

HasAadhaarSeedingStatus returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasAdditionalPlacesOfBusinessInState

func (o *ValidateResponseKycResult) HasAdditionalPlacesOfBusinessInState() bool

HasAdditionalPlacesOfBusinessInState returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasAddress

func (o *ValidateResponseKycResult) HasAddress() bool

HasAddress returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasAddresses

func (o *ValidateResponseKycResult) HasAddresses() bool

HasAddresses returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasAge

func (o *ValidateResponseKycResult) HasAge() bool

HasAge returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasAllClassOfVehicle

func (o *ValidateResponseKycResult) HasAllClassOfVehicle() bool

HasAllClassOfVehicle returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasAnnualAggregateTurnover

func (o *ValidateResponseKycResult) HasAnnualAggregateTurnover() bool

HasAnnualAggregateTurnover returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasAppliedDate

func (o *ValidateResponseKycResult) HasAppliedDate() bool

HasAppliedDate returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasAssemblyConstituency

func (o *ValidateResponseKycResult) HasAssemblyConstituency() bool

HasAssemblyConstituency returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasAuthorizedSignatories

func (o *ValidateResponseKycResult) HasAuthorizedSignatories() bool

HasAuthorizedSignatories returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasBlacklistStatus

func (o *ValidateResponseKycResult) HasBlacklistStatus() bool

HasBlacklistStatus returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasBodyType

func (o *ValidateResponseKycResult) HasBodyType() bool

HasBodyType returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasBusinessDetails

func (o *ValidateResponseKycResult) HasBusinessDetails() bool

HasBusinessDetails returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasCardSerialNumberInPollingList

func (o *ValidateResponseKycResult) HasCardSerialNumberInPollingList() bool

HasCardSerialNumberInPollingList returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasCategory

func (o *ValidateResponseKycResult) HasCategory() bool

HasCategory returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasCentralJurisdiction

func (o *ValidateResponseKycResult) HasCentralJurisdiction() bool

HasCentralJurisdiction returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasCentralJurisdictionCode

func (o *ValidateResponseKycResult) HasCentralJurisdictionCode() bool

HasCentralJurisdictionCode returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasCharges

func (o *ValidateResponseKycResult) HasCharges() bool

HasCharges returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasChassisNumber

func (o *ValidateResponseKycResult) HasChassisNumber() bool

HasChassisNumber returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasClass

func (o *ValidateResponseKycResult) HasClass() bool

HasClass returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasColor

func (o *ValidateResponseKycResult) HasColor() bool

HasColor returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasCompanyData

func (o *ValidateResponseKycResult) HasCompanyData() bool

HasCompanyData returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasCompanyMasterData

func (o *ValidateResponseKycResult) HasCompanyMasterData() bool

HasCompanyMasterData returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasComplianceRating

func (o *ValidateResponseKycResult) HasComplianceRating() bool

HasComplianceRating returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasConstitutionOfBusiness

func (o *ValidateResponseKycResult) HasConstitutionOfBusiness() bool

HasConstitutionOfBusiness returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasCxdt

func (o *ValidateResponseKycResult) HasCxdt() bool

HasCxdt returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasDateOfBirth

func (o *ValidateResponseKycResult) HasDateOfBirth() bool

HasDateOfBirth returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasDateOfCommencement

func (o *ValidateResponseKycResult) HasDateOfCommencement() bool

HasDateOfCommencement returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasDirectorData

func (o *ValidateResponseKycResult) HasDirectorData() bool

HasDirectorData returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasDirectors

func (o *ValidateResponseKycResult) HasDirectors() bool

HasDirectors returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasDistrict

func (o *ValidateResponseKycResult) HasDistrict() bool

HasDistrict returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasDrivingLicenseNumber

func (o *ValidateResponseKycResult) HasDrivingLicenseNumber() bool

HasDrivingLicenseNumber returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasEmailId

func (o *ValidateResponseKycResult) HasEmailId() bool

HasEmailId returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasEndorseDate

func (o *ValidateResponseKycResult) HasEndorseDate() bool

HasEndorseDate returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasEndorseNumber

func (o *ValidateResponseKycResult) HasEndorseNumber() bool

HasEndorseNumber returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasEngineCubicCapacity

func (o *ValidateResponseKycResult) HasEngineCubicCapacity() bool

HasEngineCubicCapacity returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasEngineNumber

func (o *ValidateResponseKycResult) HasEngineNumber() bool

HasEngineNumber returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasEnterpriseName

func (o *ValidateResponseKycResult) HasEnterpriseName() bool

HasEnterpriseName returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasEnterpriseType

func (o *ValidateResponseKycResult) HasEnterpriseType() bool

HasEnterpriseType returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasEntityName

func (o *ValidateResponseKycResult) HasEntityName() bool

HasEntityName returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasEpicNo

func (o *ValidateResponseKycResult) HasEpicNo() bool

HasEpicNo returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasExpiryDate

func (o *ValidateResponseKycResult) HasExpiryDate() bool

HasExpiryDate returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasFatherOrHusbandName

func (o *ValidateResponseKycResult) HasFatherOrHusbandName() bool

HasFatherOrHusbandName returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasFilingStatus

func (o *ValidateResponseKycResult) HasFilingStatus() bool

HasFilingStatus returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasFinancier

func (o *ValidateResponseKycResult) HasFinancier() bool

HasFinancier returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasFirstName

func (o *ValidateResponseKycResult) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasFitUpto

func (o *ValidateResponseKycResult) HasFitUpto() bool

HasFitUpto returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasForeignCompanyMasterData

func (o *ValidateResponseKycResult) HasForeignCompanyMasterData() bool

HasForeignCompanyMasterData returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasFuelType

func (o *ValidateResponseKycResult) HasFuelType() bool

HasFuelType returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasFullName

func (o *ValidateResponseKycResult) HasFullName() bool

HasFullName returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasGender

func (o *ValidateResponseKycResult) HasGender() bool

HasGender returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasGrossTotalIncome

func (o *ValidateResponseKycResult) HasGrossTotalIncome() bool

HasGrossTotalIncome returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasGrossTotalIncomeFinancialYear

func (o *ValidateResponseKycResult) HasGrossTotalIncomeFinancialYear() bool

HasGrossTotalIncomeFinancialYear returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasGrossWeight

func (o *ValidateResponseKycResult) HasGrossWeight() bool

HasGrossWeight returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasGstin

func (o *ValidateResponseKycResult) HasGstin() bool

HasGstin returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasGstnStatus

func (o *ValidateResponseKycResult) HasGstnStatus() bool

HasGstnStatus returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasHouseNumber

func (o *ValidateResponseKycResult) HasHouseNumber() bool

HasHouseNumber returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasId

func (o *ValidateResponseKycResult) HasId() bool

HasId returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasIdHolderTitle

func (o *ValidateResponseKycResult) HasIdHolderTitle() bool

HasIdHolderTitle returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasIdLastUpdated

func (o *ValidateResponseKycResult) HasIdLastUpdated() bool

HasIdLastUpdated returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasIdNumber

func (o *ValidateResponseKycResult) HasIdNumber() bool

HasIdNumber returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasIdStatus

func (o *ValidateResponseKycResult) HasIdStatus() bool

HasIdStatus returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasInsuranceDetails

func (o *ValidateResponseKycResult) HasInsuranceDetails() bool

HasInsuranceDetails returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasInsuranceUpto

func (o *ValidateResponseKycResult) HasInsuranceUpto() bool

HasInsuranceUpto returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasInsuranceValidity

func (o *ValidateResponseKycResult) HasInsuranceValidity() bool

HasInsuranceValidity returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasIsFieldVisitConducted

func (o *ValidateResponseKycResult) HasIsFieldVisitConducted() bool

HasIsFieldVisitConducted returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasLastName

func (o *ValidateResponseKycResult) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasLastUpdateDate

func (o *ValidateResponseKycResult) HasLastUpdateDate() bool

HasLastUpdateDate returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasLegalName

func (o *ValidateResponseKycResult) HasLegalName() bool

HasLegalName returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasLicenseAddress

func (o *ValidateResponseKycResult) HasLicenseAddress() bool

HasLicenseAddress returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasLicenseType

func (o *ValidateResponseKycResult) HasLicenseType() bool

HasLicenseType returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasLlpData

func (o *ValidateResponseKycResult) HasLlpData() bool

HasLlpData returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasLlpMasterData

func (o *ValidateResponseKycResult) HasLlpMasterData() bool

HasLlpMasterData returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasMajorActivity

func (o *ValidateResponseKycResult) HasMajorActivity() bool

HasMajorActivity returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasMaker

func (o *ValidateResponseKycResult) HasMaker() bool

HasMaker returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasMakerDescription

func (o *ValidateResponseKycResult) HasMakerDescription() bool

HasMakerDescription returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasMandatoryEInvoicing

func (o *ValidateResponseKycResult) HasMandatoryEInvoicing() bool

HasMandatoryEInvoicing returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasManufacturedMonthYear

func (o *ValidateResponseKycResult) HasManufacturedMonthYear() bool

HasManufacturedMonthYear returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasMobileNumber

func (o *ValidateResponseKycResult) HasMobileNumber() bool

HasMobileNumber returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasModifiedDate

func (o *ValidateResponseKycResult) HasModifiedDate() bool

HasModifiedDate returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasName

func (o *ValidateResponseKycResult) HasName() bool

HasName returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasNameInVernacular

func (o *ValidateResponseKycResult) HasNameInVernacular() bool

HasNameInVernacular returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasNatureOfBusiness

func (o *ValidateResponseKycResult) HasNatureOfBusiness() bool

HasNatureOfBusiness returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasNic2Digit

func (o *ValidateResponseKycResult) HasNic2Digit() bool

HasNic2Digit returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasNic4Digit

func (o *ValidateResponseKycResult) HasNic4Digit() bool

HasNic4Digit returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasNic5Digit

func (o *ValidateResponseKycResult) HasNic5Digit() bool

HasNic5Digit returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasNocDetails

func (o *ValidateResponseKycResult) HasNocDetails() bool

HasNocDetails returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasNormsDescription

func (o *ValidateResponseKycResult) HasNormsDescription() bool

HasNormsDescription returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasNumberCylinders

func (o *ValidateResponseKycResult) HasNumberCylinders() bool

HasNumberCylinders returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasOwnerFatherName

func (o *ValidateResponseKycResult) HasOwnerFatherName() bool

HasOwnerFatherName returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasOwnerName

func (o *ValidateResponseKycResult) HasOwnerName() bool

HasOwnerName returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasOwnerPresentAddress

func (o *ValidateResponseKycResult) HasOwnerPresentAddress() bool

HasOwnerPresentAddress returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPan

func (o *ValidateResponseKycResult) HasPan() bool

HasPan returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPanStatus

func (o *ValidateResponseKycResult) HasPanStatus() bool

HasPanStatus returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasParliamentaryConstituency

func (o *ValidateResponseKycResult) HasParliamentaryConstituency() bool

HasParliamentaryConstituency returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPartNumberOrLocationNumberInConstituency

func (o *ValidateResponseKycResult) HasPartNumberOrLocationNumberInConstituency() bool

HasPartNumberOrLocationNumberInConstituency returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPartOrLocationInConstituency

func (o *ValidateResponseKycResult) HasPartOrLocationInConstituency() bool

HasPartOrLocationInConstituency returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPermitIssueDate

func (o *ValidateResponseKycResult) HasPermitIssueDate() bool

HasPermitIssueDate returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPermitNumber

func (o *ValidateResponseKycResult) HasPermitNumber() bool

HasPermitNumber returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPermitType

func (o *ValidateResponseKycResult) HasPermitType() bool

HasPermitType returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPermitValidFrom

func (o *ValidateResponseKycResult) HasPermitValidFrom() bool

HasPermitValidFrom returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPermitValidUpto

func (o *ValidateResponseKycResult) HasPermitValidUpto() bool

HasPermitValidUpto returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPollingBoothAddress

func (o *ValidateResponseKycResult) HasPollingBoothAddress() bool

HasPollingBoothAddress returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPollingBoothCoordinates

func (o *ValidateResponseKycResult) HasPollingBoothCoordinates() bool

HasPollingBoothCoordinates returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPollingBoothDetails

func (o *ValidateResponseKycResult) HasPollingBoothDetails() bool

HasPollingBoothDetails returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPollingBoothNumber

func (o *ValidateResponseKycResult) HasPollingBoothNumber() bool

HasPollingBoothNumber returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPollutionControlValidity

func (o *ValidateResponseKycResult) HasPollutionControlValidity() bool

HasPollutionControlValidity returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPollutionNorms

func (o *ValidateResponseKycResult) HasPollutionNorms() bool

HasPollutionNorms returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPremissesAddress

func (o *ValidateResponseKycResult) HasPremissesAddress() bool

HasPremissesAddress returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasPrimaryBusinessContact

func (o *ValidateResponseKycResult) HasPrimaryBusinessContact() bool

HasPrimaryBusinessContact returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasProducts

func (o *ValidateResponseKycResult) HasProducts() bool

HasProducts returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasRegistrationAddress

func (o *ValidateResponseKycResult) HasRegistrationAddress() bool

HasRegistrationAddress returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasRegistrationDate

func (o *ValidateResponseKycResult) HasRegistrationDate() bool

HasRegistrationDate returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasRegistrationLocation

func (o *ValidateResponseKycResult) HasRegistrationLocation() bool

HasRegistrationLocation returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasRegistrationNumber

func (o *ValidateResponseKycResult) HasRegistrationNumber() bool

HasRegistrationNumber returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasRelativeName

func (o *ValidateResponseKycResult) HasRelativeName() bool

HasRelativeName returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasRelativeNameInVernacular

func (o *ValidateResponseKycResult) HasRelativeNameInVernacular() bool

HasRelativeNameInVernacular returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasRelativeRelationType

func (o *ValidateResponseKycResult) HasRelativeRelationType() bool

HasRelativeRelationType returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasSeatingCapacity

func (o *ValidateResponseKycResult) HasSeatingCapacity() bool

HasSeatingCapacity returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasSectionOfConstituencyPart

func (o *ValidateResponseKycResult) HasSectionOfConstituencyPart() bool

HasSectionOfConstituencyPart returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasSleepingCapacity

func (o *ValidateResponseKycResult) HasSleepingCapacity() bool

HasSleepingCapacity returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasSocialCategory

func (o *ValidateResponseKycResult) HasSocialCategory() bool

HasSocialCategory returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasStandingCapacity

func (o *ValidateResponseKycResult) HasStandingCapacity() bool

HasStandingCapacity returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasState

func (o *ValidateResponseKycResult) HasState() bool

HasState returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasStateCode

func (o *ValidateResponseKycResult) HasStateCode() bool

HasStateCode returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasStateJurisdiction

func (o *ValidateResponseKycResult) HasStateJurisdiction() bool

HasStateJurisdiction returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasStateJurisdictionCode

func (o *ValidateResponseKycResult) HasStateJurisdictionCode() bool

HasStateJurisdictionCode returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasStatus

func (o *ValidateResponseKycResult) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasStatusAsOn

func (o *ValidateResponseKycResult) HasStatusAsOn() bool

HasStatusAsOn returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasTaxUpto

func (o *ValidateResponseKycResult) HasTaxUpto() bool

HasTaxUpto returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasTaxpayerType

func (o *ValidateResponseKycResult) HasTaxpayerType() bool

HasTaxpayerType returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasTradeName

func (o *ValidateResponseKycResult) HasTradeName() bool

HasTradeName returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasUamNumber

func (o *ValidateResponseKycResult) HasUamNumber() bool

HasUamNumber returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasUnladenWeight

func (o *ValidateResponseKycResult) HasUnladenWeight() bool

HasUnladenWeight returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasValidFrom

func (o *ValidateResponseKycResult) HasValidFrom() bool

HasValidFrom returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasValidTo

func (o *ValidateResponseKycResult) HasValidTo() bool

HasValidTo returns a boolean if a field has been set.

func (*ValidateResponseKycResult) HasWheelbase

func (o *ValidateResponseKycResult) HasWheelbase() bool

HasWheelbase returns a boolean if a field has been set.

func (ValidateResponseKycResult) MarshalJSON

func (o ValidateResponseKycResult) MarshalJSON() ([]byte, error)

func (*ValidateResponseKycResult) SetAadhaarSeedingStatus

func (o *ValidateResponseKycResult) SetAadhaarSeedingStatus(v string)

SetAadhaarSeedingStatus gets a reference to the given string and assigns it to the AadhaarSeedingStatus field.

func (*ValidateResponseKycResult) SetAdditionalPlacesOfBusinessInState

func (o *ValidateResponseKycResult) SetAdditionalPlacesOfBusinessInState(v []string)

SetAdditionalPlacesOfBusinessInState gets a reference to the given []string and assigns it to the AdditionalPlacesOfBusinessInState field.

func (*ValidateResponseKycResult) SetAddress

SetAddress gets a reference to the given ValidateResponseKycResultAddress and assigns it to the Address field.

func (*ValidateResponseKycResult) SetAddresses

SetAddresses gets a reference to the given []ValidateResponseKycResultAddressesInner and assigns it to the Addresses field.

func (*ValidateResponseKycResult) SetAge

func (o *ValidateResponseKycResult) SetAge(v float32)

SetAge gets a reference to the given float32 and assigns it to the Age field.

func (*ValidateResponseKycResult) SetAllClassOfVehicle

SetAllClassOfVehicle gets a reference to the given []ValidateResponseKycResultAllClassOfVehicleInner and assigns it to the AllClassOfVehicle field.

func (*ValidateResponseKycResult) SetAnnualAggregateTurnover

func (o *ValidateResponseKycResult) SetAnnualAggregateTurnover(v string)

SetAnnualAggregateTurnover gets a reference to the given string and assigns it to the AnnualAggregateTurnover field.

func (*ValidateResponseKycResult) SetAppliedDate

func (o *ValidateResponseKycResult) SetAppliedDate(v string)

SetAppliedDate gets a reference to the given string and assigns it to the AppliedDate field.

func (*ValidateResponseKycResult) SetAssemblyConstituency

func (o *ValidateResponseKycResult) SetAssemblyConstituency(v string)

SetAssemblyConstituency gets a reference to the given string and assigns it to the AssemblyConstituency field.

func (*ValidateResponseKycResult) SetAuthorizedSignatories

func (o *ValidateResponseKycResult) SetAuthorizedSignatories(v string)

SetAuthorizedSignatories gets a reference to the given string and assigns it to the AuthorizedSignatories field.

func (*ValidateResponseKycResult) SetBlacklistStatus

func (o *ValidateResponseKycResult) SetBlacklistStatus(v string)

SetBlacklistStatus gets a reference to the given string and assigns it to the BlacklistStatus field.

func (*ValidateResponseKycResult) SetBodyType

func (o *ValidateResponseKycResult) SetBodyType(v string)

SetBodyType gets a reference to the given string and assigns it to the BodyType field.

func (*ValidateResponseKycResult) SetBusinessDetails

SetBusinessDetails gets a reference to the given []ValidateResponseKycResultBusinessDetailsInner and assigns it to the BusinessDetails field.

func (*ValidateResponseKycResult) SetCardSerialNumberInPollingList

func (o *ValidateResponseKycResult) SetCardSerialNumberInPollingList(v string)

SetCardSerialNumberInPollingList gets a reference to the given string and assigns it to the CardSerialNumberInPollingList field.

func (*ValidateResponseKycResult) SetCategory

func (o *ValidateResponseKycResult) SetCategory(v string)

SetCategory gets a reference to the given string and assigns it to the Category field.

func (*ValidateResponseKycResult) SetCentralJurisdiction

func (o *ValidateResponseKycResult) SetCentralJurisdiction(v string)

SetCentralJurisdiction gets a reference to the given string and assigns it to the CentralJurisdiction field.

func (*ValidateResponseKycResult) SetCentralJurisdictionCode

func (o *ValidateResponseKycResult) SetCentralJurisdictionCode(v string)

SetCentralJurisdictionCode gets a reference to the given string and assigns it to the CentralJurisdictionCode field.

func (*ValidateResponseKycResult) SetCharges

func (o *ValidateResponseKycResult) SetCharges(v []string)

SetCharges gets a reference to the given []string and assigns it to the Charges field.

func (*ValidateResponseKycResult) SetChassisNumber

func (o *ValidateResponseKycResult) SetChassisNumber(v string)

SetChassisNumber gets a reference to the given string and assigns it to the ChassisNumber field.

func (*ValidateResponseKycResult) SetClass

func (o *ValidateResponseKycResult) SetClass(v string)

SetClass gets a reference to the given string and assigns it to the Class field.

func (*ValidateResponseKycResult) SetColor

func (o *ValidateResponseKycResult) SetColor(v string)

SetColor gets a reference to the given string and assigns it to the Color field.

func (*ValidateResponseKycResult) SetCompanyData

func (o *ValidateResponseKycResult) SetCompanyData(v []string)

SetCompanyData gets a reference to the given []string and assigns it to the CompanyData field.

func (*ValidateResponseKycResult) SetCompanyMasterData

SetCompanyMasterData gets a reference to the given ValidateResponseKycResultCompanyMasterData and assigns it to the CompanyMasterData field.

func (*ValidateResponseKycResult) SetComplianceRating

func (o *ValidateResponseKycResult) SetComplianceRating(v string)

SetComplianceRating gets a reference to the given string and assigns it to the ComplianceRating field.

func (*ValidateResponseKycResult) SetConstitutionOfBusiness

func (o *ValidateResponseKycResult) SetConstitutionOfBusiness(v string)

SetConstitutionOfBusiness gets a reference to the given string and assigns it to the ConstitutionOfBusiness field.

func (*ValidateResponseKycResult) SetCxdt

func (o *ValidateResponseKycResult) SetCxdt(v string)

SetCxdt gets a reference to the given string and assigns it to the Cxdt field.

func (*ValidateResponseKycResult) SetDateOfBirth

func (o *ValidateResponseKycResult) SetDateOfBirth(v string)

SetDateOfBirth gets a reference to the given string and assigns it to the DateOfBirth field.

func (*ValidateResponseKycResult) SetDateOfCommencement

func (o *ValidateResponseKycResult) SetDateOfCommencement(v string)

SetDateOfCommencement gets a reference to the given string and assigns it to the DateOfCommencement field.

func (*ValidateResponseKycResult) SetDirectorData

SetDirectorData gets a reference to the given ValidateResponseKycResultDirectorData and assigns it to the DirectorData field.

func (*ValidateResponseKycResult) SetDirectors

SetDirectors gets a reference to the given ValidateResponseKycResultDirectors and assigns it to the Directors field.

func (*ValidateResponseKycResult) SetDistrict

func (o *ValidateResponseKycResult) SetDistrict(v string)

SetDistrict gets a reference to the given string and assigns it to the District field.

func (*ValidateResponseKycResult) SetDrivingLicenseNumber

func (o *ValidateResponseKycResult) SetDrivingLicenseNumber(v string)

SetDrivingLicenseNumber gets a reference to the given string and assigns it to the DrivingLicenseNumber field.

func (*ValidateResponseKycResult) SetEmailId

func (o *ValidateResponseKycResult) SetEmailId(v string)

SetEmailId gets a reference to the given string and assigns it to the EmailId field.

func (*ValidateResponseKycResult) SetEndorseDate

func (o *ValidateResponseKycResult) SetEndorseDate(v string)

SetEndorseDate gets a reference to the given string and assigns it to the EndorseDate field.

func (*ValidateResponseKycResult) SetEndorseNumber

func (o *ValidateResponseKycResult) SetEndorseNumber(v string)

SetEndorseNumber gets a reference to the given string and assigns it to the EndorseNumber field.

func (*ValidateResponseKycResult) SetEngineCubicCapacity

func (o *ValidateResponseKycResult) SetEngineCubicCapacity(v string)

SetEngineCubicCapacity gets a reference to the given string and assigns it to the EngineCubicCapacity field.

func (*ValidateResponseKycResult) SetEngineNumber

func (o *ValidateResponseKycResult) SetEngineNumber(v string)

SetEngineNumber gets a reference to the given string and assigns it to the EngineNumber field.

func (*ValidateResponseKycResult) SetEnterpriseName

func (o *ValidateResponseKycResult) SetEnterpriseName(v string)

SetEnterpriseName gets a reference to the given string and assigns it to the EnterpriseName field.

func (*ValidateResponseKycResult) SetEnterpriseType

func (o *ValidateResponseKycResult) SetEnterpriseType(v string)

SetEnterpriseType gets a reference to the given string and assigns it to the EnterpriseType field.

func (*ValidateResponseKycResult) SetEntityName

func (o *ValidateResponseKycResult) SetEntityName(v string)

SetEntityName gets a reference to the given string and assigns it to the EntityName field.

func (*ValidateResponseKycResult) SetEpicNo

func (o *ValidateResponseKycResult) SetEpicNo(v string)

SetEpicNo gets a reference to the given string and assigns it to the EpicNo field.

func (*ValidateResponseKycResult) SetExpiryDate

func (o *ValidateResponseKycResult) SetExpiryDate(v string)

SetExpiryDate gets a reference to the given string and assigns it to the ExpiryDate field.

func (*ValidateResponseKycResult) SetFatherOrHusbandName

func (o *ValidateResponseKycResult) SetFatherOrHusbandName(v string)

SetFatherOrHusbandName gets a reference to the given string and assigns it to the FatherOrHusbandName field.

func (*ValidateResponseKycResult) SetFilingStatus

SetFilingStatus gets a reference to the given []ValidateResponseKycResultFilingStatusInner and assigns it to the FilingStatus field.

func (*ValidateResponseKycResult) SetFinancier

func (o *ValidateResponseKycResult) SetFinancier(v string)

SetFinancier gets a reference to the given string and assigns it to the Financier field.

func (*ValidateResponseKycResult) SetFirstName

func (o *ValidateResponseKycResult) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*ValidateResponseKycResult) SetFitUpto

func (o *ValidateResponseKycResult) SetFitUpto(v string)

SetFitUpto gets a reference to the given string and assigns it to the FitUpto field.

func (*ValidateResponseKycResult) SetForeignCompanyMasterData

SetForeignCompanyMasterData gets a reference to the given ValidateResponseKycResultForeignCompanyMasterData and assigns it to the ForeignCompanyMasterData field.

func (*ValidateResponseKycResult) SetFuelType

func (o *ValidateResponseKycResult) SetFuelType(v string)

SetFuelType gets a reference to the given string and assigns it to the FuelType field.

func (*ValidateResponseKycResult) SetFullName

func (o *ValidateResponseKycResult) SetFullName(v string)

SetFullName gets a reference to the given string and assigns it to the FullName field.

func (*ValidateResponseKycResult) SetGender

func (o *ValidateResponseKycResult) SetGender(v string)

SetGender gets a reference to the given string and assigns it to the Gender field.

func (*ValidateResponseKycResult) SetGrossTotalIncome

func (o *ValidateResponseKycResult) SetGrossTotalIncome(v string)

SetGrossTotalIncome gets a reference to the given string and assigns it to the GrossTotalIncome field.

func (*ValidateResponseKycResult) SetGrossTotalIncomeFinancialYear

func (o *ValidateResponseKycResult) SetGrossTotalIncomeFinancialYear(v string)

SetGrossTotalIncomeFinancialYear gets a reference to the given string and assigns it to the GrossTotalIncomeFinancialYear field.

func (*ValidateResponseKycResult) SetGrossWeight

func (o *ValidateResponseKycResult) SetGrossWeight(v string)

SetGrossWeight gets a reference to the given string and assigns it to the GrossWeight field.

func (*ValidateResponseKycResult) SetGstin

func (o *ValidateResponseKycResult) SetGstin(v string)

SetGstin gets a reference to the given string and assigns it to the Gstin field.

func (*ValidateResponseKycResult) SetGstnStatus

func (o *ValidateResponseKycResult) SetGstnStatus(v string)

SetGstnStatus gets a reference to the given string and assigns it to the GstnStatus field.

func (*ValidateResponseKycResult) SetHouseNumber

func (o *ValidateResponseKycResult) SetHouseNumber(v string)

SetHouseNumber gets a reference to the given string and assigns it to the HouseNumber field.

func (*ValidateResponseKycResult) SetId

func (o *ValidateResponseKycResult) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ValidateResponseKycResult) SetIdHolderTitle

func (o *ValidateResponseKycResult) SetIdHolderTitle(v string)

SetIdHolderTitle gets a reference to the given string and assigns it to the IdHolderTitle field.

func (*ValidateResponseKycResult) SetIdLastUpdated

func (o *ValidateResponseKycResult) SetIdLastUpdated(v string)

SetIdLastUpdated gets a reference to the given string and assigns it to the IdLastUpdated field.

func (*ValidateResponseKycResult) SetIdNumber

func (o *ValidateResponseKycResult) SetIdNumber(v string)

SetIdNumber gets a reference to the given string and assigns it to the IdNumber field.

func (*ValidateResponseKycResult) SetIdStatus

func (o *ValidateResponseKycResult) SetIdStatus(v string)

SetIdStatus gets a reference to the given string and assigns it to the IdStatus field.

func (*ValidateResponseKycResult) SetInsuranceDetails

func (o *ValidateResponseKycResult) SetInsuranceDetails(v string)

SetInsuranceDetails gets a reference to the given string and assigns it to the InsuranceDetails field.

func (*ValidateResponseKycResult) SetInsuranceUpto

func (o *ValidateResponseKycResult) SetInsuranceUpto(v string)

SetInsuranceUpto gets a reference to the given string and assigns it to the InsuranceUpto field.

func (*ValidateResponseKycResult) SetInsuranceValidity

func (o *ValidateResponseKycResult) SetInsuranceValidity(v string)

SetInsuranceValidity gets a reference to the given string and assigns it to the InsuranceValidity field.

func (*ValidateResponseKycResult) SetIsFieldVisitConducted

func (o *ValidateResponseKycResult) SetIsFieldVisitConducted(v string)

SetIsFieldVisitConducted gets a reference to the given string and assigns it to the IsFieldVisitConducted field.

func (*ValidateResponseKycResult) SetLastName

func (o *ValidateResponseKycResult) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*ValidateResponseKycResult) SetLastUpdateDate

func (o *ValidateResponseKycResult) SetLastUpdateDate(v string)

SetLastUpdateDate gets a reference to the given string and assigns it to the LastUpdateDate field.

func (*ValidateResponseKycResult) SetLegalName

func (o *ValidateResponseKycResult) SetLegalName(v string)

SetLegalName gets a reference to the given string and assigns it to the LegalName field.

func (*ValidateResponseKycResult) SetLicenseAddress

func (o *ValidateResponseKycResult) SetLicenseAddress(v string)

SetLicenseAddress gets a reference to the given string and assigns it to the LicenseAddress field.

func (*ValidateResponseKycResult) SetLicenseType

func (o *ValidateResponseKycResult) SetLicenseType(v string)

SetLicenseType gets a reference to the given string and assigns it to the LicenseType field.

func (*ValidateResponseKycResult) SetLlpData

func (o *ValidateResponseKycResult) SetLlpData(v []string)

SetLlpData gets a reference to the given []string and assigns it to the LlpData field.

func (*ValidateResponseKycResult) SetLlpMasterData

SetLlpMasterData gets a reference to the given ValidateResponseKycResultLlpMasterData and assigns it to the LlpMasterData field.

func (*ValidateResponseKycResult) SetMajorActivity

func (o *ValidateResponseKycResult) SetMajorActivity(v string)

SetMajorActivity gets a reference to the given string and assigns it to the MajorActivity field.

func (*ValidateResponseKycResult) SetMaker

func (o *ValidateResponseKycResult) SetMaker(v string)

SetMaker gets a reference to the given string and assigns it to the Maker field.

func (*ValidateResponseKycResult) SetMakerDescription

func (o *ValidateResponseKycResult) SetMakerDescription(v string)

SetMakerDescription gets a reference to the given string and assigns it to the MakerDescription field.

func (*ValidateResponseKycResult) SetMandatoryEInvoicing

func (o *ValidateResponseKycResult) SetMandatoryEInvoicing(v string)

SetMandatoryEInvoicing gets a reference to the given string and assigns it to the MandatoryEInvoicing field.

func (*ValidateResponseKycResult) SetManufacturedMonthYear

func (o *ValidateResponseKycResult) SetManufacturedMonthYear(v string)

SetManufacturedMonthYear gets a reference to the given string and assigns it to the ManufacturedMonthYear field.

func (*ValidateResponseKycResult) SetMobileNumber

func (o *ValidateResponseKycResult) SetMobileNumber(v string)

SetMobileNumber gets a reference to the given string and assigns it to the MobileNumber field.

func (*ValidateResponseKycResult) SetModifiedDate

func (o *ValidateResponseKycResult) SetModifiedDate(v string)

SetModifiedDate gets a reference to the given string and assigns it to the ModifiedDate field.

func (*ValidateResponseKycResult) SetName

func (o *ValidateResponseKycResult) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ValidateResponseKycResult) SetNameInVernacular

func (o *ValidateResponseKycResult) SetNameInVernacular(v string)

SetNameInVernacular gets a reference to the given string and assigns it to the NameInVernacular field.

func (*ValidateResponseKycResult) SetNatureOfBusiness

func (o *ValidateResponseKycResult) SetNatureOfBusiness(v []string)

SetNatureOfBusiness gets a reference to the given []string and assigns it to the NatureOfBusiness field.

func (*ValidateResponseKycResult) SetNic2Digit

func (o *ValidateResponseKycResult) SetNic2Digit(v string)

SetNic2Digit gets a reference to the given string and assigns it to the Nic2Digit field.

func (*ValidateResponseKycResult) SetNic4Digit

func (o *ValidateResponseKycResult) SetNic4Digit(v string)

SetNic4Digit gets a reference to the given string and assigns it to the Nic4Digit field.

func (*ValidateResponseKycResult) SetNic5Digit

func (o *ValidateResponseKycResult) SetNic5Digit(v string)

SetNic5Digit gets a reference to the given string and assigns it to the Nic5Digit field.

func (*ValidateResponseKycResult) SetNocDetails

func (o *ValidateResponseKycResult) SetNocDetails(v string)

SetNocDetails gets a reference to the given string and assigns it to the NocDetails field.

func (*ValidateResponseKycResult) SetNormsDescription

func (o *ValidateResponseKycResult) SetNormsDescription(v string)

SetNormsDescription gets a reference to the given string and assigns it to the NormsDescription field.

func (*ValidateResponseKycResult) SetNumberCylinders

func (o *ValidateResponseKycResult) SetNumberCylinders(v string)

SetNumberCylinders gets a reference to the given string and assigns it to the NumberCylinders field.

func (*ValidateResponseKycResult) SetOwnerFatherName

func (o *ValidateResponseKycResult) SetOwnerFatherName(v string)

SetOwnerFatherName gets a reference to the given string and assigns it to the OwnerFatherName field.

func (*ValidateResponseKycResult) SetOwnerName

func (o *ValidateResponseKycResult) SetOwnerName(v string)

SetOwnerName gets a reference to the given string and assigns it to the OwnerName field.

func (*ValidateResponseKycResult) SetOwnerPresentAddress

func (o *ValidateResponseKycResult) SetOwnerPresentAddress(v string)

SetOwnerPresentAddress gets a reference to the given string and assigns it to the OwnerPresentAddress field.

func (*ValidateResponseKycResult) SetPan

func (o *ValidateResponseKycResult) SetPan(v string)

SetPan gets a reference to the given string and assigns it to the Pan field.

func (*ValidateResponseKycResult) SetPanStatus

func (o *ValidateResponseKycResult) SetPanStatus(v string)

SetPanStatus gets a reference to the given string and assigns it to the PanStatus field.

func (*ValidateResponseKycResult) SetParliamentaryConstituency

func (o *ValidateResponseKycResult) SetParliamentaryConstituency(v string)

SetParliamentaryConstituency gets a reference to the given string and assigns it to the ParliamentaryConstituency field.

func (*ValidateResponseKycResult) SetPartNumberOrLocationNumberInConstituency

func (o *ValidateResponseKycResult) SetPartNumberOrLocationNumberInConstituency(v string)

SetPartNumberOrLocationNumberInConstituency gets a reference to the given string and assigns it to the PartNumberOrLocationNumberInConstituency field.

func (*ValidateResponseKycResult) SetPartOrLocationInConstituency

func (o *ValidateResponseKycResult) SetPartOrLocationInConstituency(v string)

SetPartOrLocationInConstituency gets a reference to the given string and assigns it to the PartOrLocationInConstituency field.

func (*ValidateResponseKycResult) SetPermitIssueDate

func (o *ValidateResponseKycResult) SetPermitIssueDate(v string)

SetPermitIssueDate gets a reference to the given string and assigns it to the PermitIssueDate field.

func (*ValidateResponseKycResult) SetPermitNumber

func (o *ValidateResponseKycResult) SetPermitNumber(v string)

SetPermitNumber gets a reference to the given string and assigns it to the PermitNumber field.

func (*ValidateResponseKycResult) SetPermitType

func (o *ValidateResponseKycResult) SetPermitType(v string)

SetPermitType gets a reference to the given string and assigns it to the PermitType field.

func (*ValidateResponseKycResult) SetPermitValidFrom

func (o *ValidateResponseKycResult) SetPermitValidFrom(v string)

SetPermitValidFrom gets a reference to the given string and assigns it to the PermitValidFrom field.

func (*ValidateResponseKycResult) SetPermitValidUpto

func (o *ValidateResponseKycResult) SetPermitValidUpto(v string)

SetPermitValidUpto gets a reference to the given string and assigns it to the PermitValidUpto field.

func (*ValidateResponseKycResult) SetPollingBoothAddress

func (o *ValidateResponseKycResult) SetPollingBoothAddress(v string)

SetPollingBoothAddress gets a reference to the given string and assigns it to the PollingBoothAddress field.

func (*ValidateResponseKycResult) SetPollingBoothCoordinates

func (o *ValidateResponseKycResult) SetPollingBoothCoordinates(v string)

SetPollingBoothCoordinates gets a reference to the given string and assigns it to the PollingBoothCoordinates field.

func (*ValidateResponseKycResult) SetPollingBoothDetails

SetPollingBoothDetails gets a reference to the given ValidateResponseKycResultPollingBoothDetails and assigns it to the PollingBoothDetails field.

func (*ValidateResponseKycResult) SetPollingBoothNumber

func (o *ValidateResponseKycResult) SetPollingBoothNumber(v string)

SetPollingBoothNumber gets a reference to the given string and assigns it to the PollingBoothNumber field.

func (*ValidateResponseKycResult) SetPollutionControlValidity

func (o *ValidateResponseKycResult) SetPollutionControlValidity(v string)

SetPollutionControlValidity gets a reference to the given string and assigns it to the PollutionControlValidity field.

func (*ValidateResponseKycResult) SetPollutionNorms

func (o *ValidateResponseKycResult) SetPollutionNorms(v string)

SetPollutionNorms gets a reference to the given string and assigns it to the PollutionNorms field.

func (*ValidateResponseKycResult) SetPremissesAddress

SetPremissesAddress gets a reference to the given ValidateResponseKycResultPremissesAddress and assigns it to the PremissesAddress field.

func (*ValidateResponseKycResult) SetPrimaryBusinessContact

SetPrimaryBusinessContact gets a reference to the given ValidateResponseKycResultPrimaryBusinessContact and assigns it to the PrimaryBusinessContact field.

func (*ValidateResponseKycResult) SetProducts

SetProducts gets a reference to the given []ValidateResponseKycResultProductsInner and assigns it to the Products field.

func (*ValidateResponseKycResult) SetRegistrationAddress

func (o *ValidateResponseKycResult) SetRegistrationAddress(v string)

SetRegistrationAddress gets a reference to the given string and assigns it to the RegistrationAddress field.

func (*ValidateResponseKycResult) SetRegistrationDate

func (o *ValidateResponseKycResult) SetRegistrationDate(v string)

SetRegistrationDate gets a reference to the given string and assigns it to the RegistrationDate field.

func (*ValidateResponseKycResult) SetRegistrationLocation

func (o *ValidateResponseKycResult) SetRegistrationLocation(v string)

SetRegistrationLocation gets a reference to the given string and assigns it to the RegistrationLocation field.

func (*ValidateResponseKycResult) SetRegistrationNumber

func (o *ValidateResponseKycResult) SetRegistrationNumber(v string)

SetRegistrationNumber gets a reference to the given string and assigns it to the RegistrationNumber field.

func (*ValidateResponseKycResult) SetRelativeName

func (o *ValidateResponseKycResult) SetRelativeName(v string)

SetRelativeName gets a reference to the given string and assigns it to the RelativeName field.

func (*ValidateResponseKycResult) SetRelativeNameInVernacular

func (o *ValidateResponseKycResult) SetRelativeNameInVernacular(v string)

SetRelativeNameInVernacular gets a reference to the given string and assigns it to the RelativeNameInVernacular field.

func (*ValidateResponseKycResult) SetRelativeRelationType

func (o *ValidateResponseKycResult) SetRelativeRelationType(v string)

SetRelativeRelationType gets a reference to the given string and assigns it to the RelativeRelationType field.

func (*ValidateResponseKycResult) SetSeatingCapacity

func (o *ValidateResponseKycResult) SetSeatingCapacity(v string)

SetSeatingCapacity gets a reference to the given string and assigns it to the SeatingCapacity field.

func (*ValidateResponseKycResult) SetSectionOfConstituencyPart

func (o *ValidateResponseKycResult) SetSectionOfConstituencyPart(v string)

SetSectionOfConstituencyPart gets a reference to the given string and assigns it to the SectionOfConstituencyPart field.

func (*ValidateResponseKycResult) SetSleepingCapacity

func (o *ValidateResponseKycResult) SetSleepingCapacity(v string)

SetSleepingCapacity gets a reference to the given string and assigns it to the SleepingCapacity field.

func (*ValidateResponseKycResult) SetSocialCategory

func (o *ValidateResponseKycResult) SetSocialCategory(v string)

SetSocialCategory gets a reference to the given string and assigns it to the SocialCategory field.

func (*ValidateResponseKycResult) SetStandingCapacity

func (o *ValidateResponseKycResult) SetStandingCapacity(v string)

SetStandingCapacity gets a reference to the given string and assigns it to the StandingCapacity field.

func (*ValidateResponseKycResult) SetState

func (o *ValidateResponseKycResult) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*ValidateResponseKycResult) SetStateCode

func (o *ValidateResponseKycResult) SetStateCode(v string)

SetStateCode gets a reference to the given string and assigns it to the StateCode field.

func (*ValidateResponseKycResult) SetStateJurisdiction

func (o *ValidateResponseKycResult) SetStateJurisdiction(v string)

SetStateJurisdiction gets a reference to the given string and assigns it to the StateJurisdiction field.

func (*ValidateResponseKycResult) SetStateJurisdictionCode

func (o *ValidateResponseKycResult) SetStateJurisdictionCode(v string)

SetStateJurisdictionCode gets a reference to the given string and assigns it to the StateJurisdictionCode field.

func (*ValidateResponseKycResult) SetStatus

func (o *ValidateResponseKycResult) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*ValidateResponseKycResult) SetStatusAsOn

func (o *ValidateResponseKycResult) SetStatusAsOn(v string)

SetStatusAsOn gets a reference to the given string and assigns it to the StatusAsOn field.

func (*ValidateResponseKycResult) SetTaxUpto

func (o *ValidateResponseKycResult) SetTaxUpto(v string)

SetTaxUpto gets a reference to the given string and assigns it to the TaxUpto field.

func (*ValidateResponseKycResult) SetTaxpayerType

func (o *ValidateResponseKycResult) SetTaxpayerType(v string)

SetTaxpayerType gets a reference to the given string and assigns it to the TaxpayerType field.

func (*ValidateResponseKycResult) SetTradeName

func (o *ValidateResponseKycResult) SetTradeName(v string)

SetTradeName gets a reference to the given string and assigns it to the TradeName field.

func (*ValidateResponseKycResult) SetUamNumber

func (o *ValidateResponseKycResult) SetUamNumber(v string)

SetUamNumber gets a reference to the given string and assigns it to the UamNumber field.

func (*ValidateResponseKycResult) SetUnladenWeight

func (o *ValidateResponseKycResult) SetUnladenWeight(v string)

SetUnladenWeight gets a reference to the given string and assigns it to the UnladenWeight field.

func (*ValidateResponseKycResult) SetValidFrom

func (o *ValidateResponseKycResult) SetValidFrom(v string)

SetValidFrom gets a reference to the given string and assigns it to the ValidFrom field.

func (*ValidateResponseKycResult) SetValidTo

func (o *ValidateResponseKycResult) SetValidTo(v string)

SetValidTo gets a reference to the given string and assigns it to the ValidTo field.

func (*ValidateResponseKycResult) SetWheelbase

func (o *ValidateResponseKycResult) SetWheelbase(v string)

SetWheelbase gets a reference to the given string and assigns it to the Wheelbase field.

type ValidateResponseKycResultAddress

type ValidateResponseKycResultAddress struct {
	District               []string                               `json:"district,omitempty"`
	State                  *ValidateResponseKycResultAddressState `json:"state,omitempty"`
	City                   []string                               `json:"city,omitempty"`
	Pincode                *string                                `json:"pincode,omitempty"`
	Country                []string                               `json:"country,omitempty"`
	AddressLine            *string                                `json:"addressLine,omitempty"`
	DistrictCode           *string                                `json:"districtCode,omitempty"`
	DistrictName           *string                                `json:"districtName,omitempty"`
	DistrictNameVernacular *string                                `json:"districtNameVernacular,omitempty"`
	StateCode              *string                                `json:"stateCode,omitempty"`
}

ValidateResponseKycResultAddress struct for ValidateResponseKycResultAddress

func NewValidateResponseKycResultAddress

func NewValidateResponseKycResultAddress() *ValidateResponseKycResultAddress

NewValidateResponseKycResultAddress instantiates a new ValidateResponseKycResultAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultAddressWithDefaults

func NewValidateResponseKycResultAddressWithDefaults() *ValidateResponseKycResultAddress

NewValidateResponseKycResultAddressWithDefaults instantiates a new ValidateResponseKycResultAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultAddress) GetAddressLine

func (o *ValidateResponseKycResultAddress) GetAddressLine() string

GetAddressLine returns the AddressLine field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddress) GetAddressLineOk

func (o *ValidateResponseKycResultAddress) GetAddressLineOk() (*string, bool)

GetAddressLineOk returns a tuple with the AddressLine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddress) GetCity

GetCity returns the City field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddress) GetCityOk

func (o *ValidateResponseKycResultAddress) GetCityOk() ([]string, bool)

GetCityOk returns a tuple with the City field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddress) GetCountry

func (o *ValidateResponseKycResultAddress) GetCountry() []string

GetCountry returns the Country field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddress) GetCountryOk

func (o *ValidateResponseKycResultAddress) GetCountryOk() ([]string, bool)

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddress) GetDistrict

func (o *ValidateResponseKycResultAddress) GetDistrict() []string

GetDistrict returns the District field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddress) GetDistrictCode

func (o *ValidateResponseKycResultAddress) GetDistrictCode() string

GetDistrictCode returns the DistrictCode field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddress) GetDistrictCodeOk

func (o *ValidateResponseKycResultAddress) GetDistrictCodeOk() (*string, bool)

GetDistrictCodeOk returns a tuple with the DistrictCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddress) GetDistrictName

func (o *ValidateResponseKycResultAddress) GetDistrictName() string

GetDistrictName returns the DistrictName field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddress) GetDistrictNameOk

func (o *ValidateResponseKycResultAddress) GetDistrictNameOk() (*string, bool)

GetDistrictNameOk returns a tuple with the DistrictName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddress) GetDistrictNameVernacular

func (o *ValidateResponseKycResultAddress) GetDistrictNameVernacular() string

GetDistrictNameVernacular returns the DistrictNameVernacular field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddress) GetDistrictNameVernacularOk

func (o *ValidateResponseKycResultAddress) GetDistrictNameVernacularOk() (*string, bool)

GetDistrictNameVernacularOk returns a tuple with the DistrictNameVernacular field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddress) GetDistrictOk

func (o *ValidateResponseKycResultAddress) GetDistrictOk() ([]string, bool)

GetDistrictOk returns a tuple with the District field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddress) GetPincode

func (o *ValidateResponseKycResultAddress) GetPincode() string

GetPincode returns the Pincode field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddress) GetPincodeOk

func (o *ValidateResponseKycResultAddress) GetPincodeOk() (*string, bool)

GetPincodeOk returns a tuple with the Pincode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddress) GetState

GetState returns the State field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddress) GetStateCode

func (o *ValidateResponseKycResultAddress) GetStateCode() string

GetStateCode returns the StateCode field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddress) GetStateCodeOk

func (o *ValidateResponseKycResultAddress) GetStateCodeOk() (*string, bool)

GetStateCodeOk returns a tuple with the StateCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddress) GetStateOk

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddress) HasAddressLine

func (o *ValidateResponseKycResultAddress) HasAddressLine() bool

HasAddressLine returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddress) HasCity

HasCity returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddress) HasCountry

func (o *ValidateResponseKycResultAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddress) HasDistrict

func (o *ValidateResponseKycResultAddress) HasDistrict() bool

HasDistrict returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddress) HasDistrictCode

func (o *ValidateResponseKycResultAddress) HasDistrictCode() bool

HasDistrictCode returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddress) HasDistrictName

func (o *ValidateResponseKycResultAddress) HasDistrictName() bool

HasDistrictName returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddress) HasDistrictNameVernacular

func (o *ValidateResponseKycResultAddress) HasDistrictNameVernacular() bool

HasDistrictNameVernacular returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddress) HasPincode

func (o *ValidateResponseKycResultAddress) HasPincode() bool

HasPincode returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddress) HasState

func (o *ValidateResponseKycResultAddress) HasState() bool

HasState returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddress) HasStateCode

func (o *ValidateResponseKycResultAddress) HasStateCode() bool

HasStateCode returns a boolean if a field has been set.

func (ValidateResponseKycResultAddress) MarshalJSON

func (o ValidateResponseKycResultAddress) MarshalJSON() ([]byte, error)

func (*ValidateResponseKycResultAddress) SetAddressLine

func (o *ValidateResponseKycResultAddress) SetAddressLine(v string)

SetAddressLine gets a reference to the given string and assigns it to the AddressLine field.

func (*ValidateResponseKycResultAddress) SetCity

func (o *ValidateResponseKycResultAddress) SetCity(v []string)

SetCity gets a reference to the given []string and assigns it to the City field.

func (*ValidateResponseKycResultAddress) SetCountry

func (o *ValidateResponseKycResultAddress) SetCountry(v []string)

SetCountry gets a reference to the given []string and assigns it to the Country field.

func (*ValidateResponseKycResultAddress) SetDistrict

func (o *ValidateResponseKycResultAddress) SetDistrict(v []string)

SetDistrict gets a reference to the given []string and assigns it to the District field.

func (*ValidateResponseKycResultAddress) SetDistrictCode

func (o *ValidateResponseKycResultAddress) SetDistrictCode(v string)

SetDistrictCode gets a reference to the given string and assigns it to the DistrictCode field.

func (*ValidateResponseKycResultAddress) SetDistrictName

func (o *ValidateResponseKycResultAddress) SetDistrictName(v string)

SetDistrictName gets a reference to the given string and assigns it to the DistrictName field.

func (*ValidateResponseKycResultAddress) SetDistrictNameVernacular

func (o *ValidateResponseKycResultAddress) SetDistrictNameVernacular(v string)

SetDistrictNameVernacular gets a reference to the given string and assigns it to the DistrictNameVernacular field.

func (*ValidateResponseKycResultAddress) SetPincode

func (o *ValidateResponseKycResultAddress) SetPincode(v string)

SetPincode gets a reference to the given string and assigns it to the Pincode field.

func (*ValidateResponseKycResultAddress) SetState

SetState gets a reference to the given ValidateResponseKycResultAddressState and assigns it to the State field.

func (*ValidateResponseKycResultAddress) SetStateCode

func (o *ValidateResponseKycResultAddress) SetStateCode(v string)

SetStateCode gets a reference to the given string and assigns it to the StateCode field.

type ValidateResponseKycResultAddressState

type ValidateResponseKycResultAddressState struct {
	ArrayOfArrayOfString *[][]string
	String               *string
}

ValidateResponseKycResultAddressState - struct for ValidateResponseKycResultAddressState

func ArrayOfArrayOfStringAsValidateResponseKycResultAddressState

func ArrayOfArrayOfStringAsValidateResponseKycResultAddressState(v *[][]string) ValidateResponseKycResultAddressState

[][]stringAsValidateResponseKycResultAddressState is a convenience function that returns [][]string wrapped in ValidateResponseKycResultAddressState

func StringAsValidateResponseKycResultAddressState

func StringAsValidateResponseKycResultAddressState(v *string) ValidateResponseKycResultAddressState

stringAsValidateResponseKycResultAddressState is a convenience function that returns string wrapped in ValidateResponseKycResultAddressState

func (*ValidateResponseKycResultAddressState) GetActualInstance

func (obj *ValidateResponseKycResultAddressState) GetActualInstance() interface{}

Get the actual instance

func (ValidateResponseKycResultAddressState) MarshalJSON

func (src ValidateResponseKycResultAddressState) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ValidateResponseKycResultAddressState) UnmarshalJSON

func (dst *ValidateResponseKycResultAddressState) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ValidateResponseKycResultAddressesInner

type ValidateResponseKycResultAddressesInner struct {
	AddressLine     *string `json:"addressLine,omitempty"`
	CompleteAddress *string `json:"completeAddress,omitempty"`
	Country         *string `json:"country,omitempty"`
	District        *string `json:"district,omitempty"`
	Pin             *string `json:"pin,omitempty"`
	State           *string `json:"state,omitempty"`
	Type            *string `json:"type,omitempty"`
}

ValidateResponseKycResultAddressesInner struct for ValidateResponseKycResultAddressesInner

func NewValidateResponseKycResultAddressesInner

func NewValidateResponseKycResultAddressesInner() *ValidateResponseKycResultAddressesInner

NewValidateResponseKycResultAddressesInner instantiates a new ValidateResponseKycResultAddressesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultAddressesInnerWithDefaults

func NewValidateResponseKycResultAddressesInnerWithDefaults() *ValidateResponseKycResultAddressesInner

NewValidateResponseKycResultAddressesInnerWithDefaults instantiates a new ValidateResponseKycResultAddressesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultAddressesInner) GetAddressLine

func (o *ValidateResponseKycResultAddressesInner) GetAddressLine() string

GetAddressLine returns the AddressLine field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddressesInner) GetAddressLineOk

func (o *ValidateResponseKycResultAddressesInner) GetAddressLineOk() (*string, bool)

GetAddressLineOk returns a tuple with the AddressLine field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddressesInner) GetCompleteAddress

func (o *ValidateResponseKycResultAddressesInner) GetCompleteAddress() string

GetCompleteAddress returns the CompleteAddress field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddressesInner) GetCompleteAddressOk

func (o *ValidateResponseKycResultAddressesInner) GetCompleteAddressOk() (*string, bool)

GetCompleteAddressOk returns a tuple with the CompleteAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddressesInner) GetCountry

GetCountry returns the Country field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddressesInner) GetCountryOk

func (o *ValidateResponseKycResultAddressesInner) GetCountryOk() (*string, bool)

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddressesInner) GetDistrict

GetDistrict returns the District field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddressesInner) GetDistrictOk

func (o *ValidateResponseKycResultAddressesInner) GetDistrictOk() (*string, bool)

GetDistrictOk returns a tuple with the District field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddressesInner) GetPin

GetPin returns the Pin field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddressesInner) GetPinOk

GetPinOk returns a tuple with the Pin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddressesInner) GetState

GetState returns the State field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddressesInner) GetStateOk

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddressesInner) GetType

GetType returns the Type field value if set, zero value otherwise.

func (*ValidateResponseKycResultAddressesInner) GetTypeOk

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAddressesInner) HasAddressLine

func (o *ValidateResponseKycResultAddressesInner) HasAddressLine() bool

HasAddressLine returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddressesInner) HasCompleteAddress

func (o *ValidateResponseKycResultAddressesInner) HasCompleteAddress() bool

HasCompleteAddress returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddressesInner) HasCountry

HasCountry returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddressesInner) HasDistrict

HasDistrict returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddressesInner) HasPin

HasPin returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddressesInner) HasState

HasState returns a boolean if a field has been set.

func (*ValidateResponseKycResultAddressesInner) HasType

HasType returns a boolean if a field has been set.

func (ValidateResponseKycResultAddressesInner) MarshalJSON

func (o ValidateResponseKycResultAddressesInner) MarshalJSON() ([]byte, error)

func (*ValidateResponseKycResultAddressesInner) SetAddressLine

func (o *ValidateResponseKycResultAddressesInner) SetAddressLine(v string)

SetAddressLine gets a reference to the given string and assigns it to the AddressLine field.

func (*ValidateResponseKycResultAddressesInner) SetCompleteAddress

func (o *ValidateResponseKycResultAddressesInner) SetCompleteAddress(v string)

SetCompleteAddress gets a reference to the given string and assigns it to the CompleteAddress field.

func (*ValidateResponseKycResultAddressesInner) SetCountry

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*ValidateResponseKycResultAddressesInner) SetDistrict

SetDistrict gets a reference to the given string and assigns it to the District field.

func (*ValidateResponseKycResultAddressesInner) SetPin

SetPin gets a reference to the given string and assigns it to the Pin field.

func (*ValidateResponseKycResultAddressesInner) SetState

SetState gets a reference to the given string and assigns it to the State field.

func (*ValidateResponseKycResultAddressesInner) SetType

SetType gets a reference to the given string and assigns it to the Type field.

type ValidateResponseKycResultAllClassOfVehicleInner

type ValidateResponseKycResultAllClassOfVehicleInner struct {
	Cov         *string `json:"cov,omitempty"`
	ExpiryDate  *string `json:"expiryDate,omitempty"`
	IssueDate   *string `json:"issueDate,omitempty"`
	CovCategory *string `json:"covCategory,omitempty"`
}

ValidateResponseKycResultAllClassOfVehicleInner struct for ValidateResponseKycResultAllClassOfVehicleInner

func NewValidateResponseKycResultAllClassOfVehicleInner

func NewValidateResponseKycResultAllClassOfVehicleInner() *ValidateResponseKycResultAllClassOfVehicleInner

NewValidateResponseKycResultAllClassOfVehicleInner instantiates a new ValidateResponseKycResultAllClassOfVehicleInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultAllClassOfVehicleInnerWithDefaults

func NewValidateResponseKycResultAllClassOfVehicleInnerWithDefaults() *ValidateResponseKycResultAllClassOfVehicleInner

NewValidateResponseKycResultAllClassOfVehicleInnerWithDefaults instantiates a new ValidateResponseKycResultAllClassOfVehicleInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultAllClassOfVehicleInner) GetCov

GetCov returns the Cov field value if set, zero value otherwise.

func (*ValidateResponseKycResultAllClassOfVehicleInner) GetCovCategory

GetCovCategory returns the CovCategory field value if set, zero value otherwise.

func (*ValidateResponseKycResultAllClassOfVehicleInner) GetCovCategoryOk

GetCovCategoryOk returns a tuple with the CovCategory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAllClassOfVehicleInner) GetCovOk

GetCovOk returns a tuple with the Cov field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAllClassOfVehicleInner) GetExpiryDate

GetExpiryDate returns the ExpiryDate field value if set, zero value otherwise.

func (*ValidateResponseKycResultAllClassOfVehicleInner) GetExpiryDateOk

GetExpiryDateOk returns a tuple with the ExpiryDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAllClassOfVehicleInner) GetIssueDate

GetIssueDate returns the IssueDate field value if set, zero value otherwise.

func (*ValidateResponseKycResultAllClassOfVehicleInner) GetIssueDateOk

GetIssueDateOk returns a tuple with the IssueDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultAllClassOfVehicleInner) HasCov

HasCov returns a boolean if a field has been set.

func (*ValidateResponseKycResultAllClassOfVehicleInner) HasCovCategory

HasCovCategory returns a boolean if a field has been set.

func (*ValidateResponseKycResultAllClassOfVehicleInner) HasExpiryDate

HasExpiryDate returns a boolean if a field has been set.

func (*ValidateResponseKycResultAllClassOfVehicleInner) HasIssueDate

HasIssueDate returns a boolean if a field has been set.

func (ValidateResponseKycResultAllClassOfVehicleInner) MarshalJSON

func (*ValidateResponseKycResultAllClassOfVehicleInner) SetCov

SetCov gets a reference to the given string and assigns it to the Cov field.

func (*ValidateResponseKycResultAllClassOfVehicleInner) SetCovCategory

SetCovCategory gets a reference to the given string and assigns it to the CovCategory field.

func (*ValidateResponseKycResultAllClassOfVehicleInner) SetExpiryDate

SetExpiryDate gets a reference to the given string and assigns it to the ExpiryDate field.

func (*ValidateResponseKycResultAllClassOfVehicleInner) SetIssueDate

SetIssueDate gets a reference to the given string and assigns it to the IssueDate field.

type ValidateResponseKycResultBusinessDetailsInner

type ValidateResponseKycResultBusinessDetailsInner struct {
	Hsn           *string `json:"hsn,omitempty"`
	ServiceDetail *string `json:"serviceDetail,omitempty"`
}

ValidateResponseKycResultBusinessDetailsInner struct for ValidateResponseKycResultBusinessDetailsInner

func NewValidateResponseKycResultBusinessDetailsInner

func NewValidateResponseKycResultBusinessDetailsInner() *ValidateResponseKycResultBusinessDetailsInner

NewValidateResponseKycResultBusinessDetailsInner instantiates a new ValidateResponseKycResultBusinessDetailsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultBusinessDetailsInnerWithDefaults

func NewValidateResponseKycResultBusinessDetailsInnerWithDefaults() *ValidateResponseKycResultBusinessDetailsInner

NewValidateResponseKycResultBusinessDetailsInnerWithDefaults instantiates a new ValidateResponseKycResultBusinessDetailsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultBusinessDetailsInner) GetHsn

GetHsn returns the Hsn field value if set, zero value otherwise.

func (*ValidateResponseKycResultBusinessDetailsInner) GetHsnOk

GetHsnOk returns a tuple with the Hsn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultBusinessDetailsInner) GetServiceDetail

GetServiceDetail returns the ServiceDetail field value if set, zero value otherwise.

func (*ValidateResponseKycResultBusinessDetailsInner) GetServiceDetailOk

func (o *ValidateResponseKycResultBusinessDetailsInner) GetServiceDetailOk() (*string, bool)

GetServiceDetailOk returns a tuple with the ServiceDetail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultBusinessDetailsInner) HasHsn

HasHsn returns a boolean if a field has been set.

func (*ValidateResponseKycResultBusinessDetailsInner) HasServiceDetail

HasServiceDetail returns a boolean if a field has been set.

func (ValidateResponseKycResultBusinessDetailsInner) MarshalJSON

func (*ValidateResponseKycResultBusinessDetailsInner) SetHsn

SetHsn gets a reference to the given string and assigns it to the Hsn field.

func (*ValidateResponseKycResultBusinessDetailsInner) SetServiceDetail

SetServiceDetail gets a reference to the given string and assigns it to the ServiceDetail field.

type ValidateResponseKycResultCompanyMasterData

type ValidateResponseKycResultCompanyMasterData struct {
	CompanyCategory                                                                   *string `json:"companyCategory,omitempty"`
	EmailId                                                                           *string `json:"emailId,omitempty"`
	ClassOfCompany                                                                    *string `json:"classOfCompany,omitempty"`
	NumberOfMembersApplicableInCaseOfCompanyWithoutShareCapital                       *string `json:"numberOfMembersApplicableInCaseOfCompanyWithoutShareCapital,omitempty"`
	AddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained *string `json:"addressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained,omitempty"`
	DateOfLastAgm                                                                     *string `json:"dateOfLastAgm,omitempty"`
	RegisteredAddress                                                                 *string `json:"registeredAddress,omitempty"`
	ActiveCompliance                                                                  *string `json:"activeCompliance,omitempty"`
	RegistrationNumber                                                                *string `json:"registrationNumber,omitempty"`
	PaidUpCapitalInInr                                                                *string `json:"paidUpCapitalInInr,omitempty"`
	WhetherListedOrNot                                                                *string `json:"whetherListedOrNot,omitempty"`
	SuspendedAtStockExchange                                                          *string `json:"suspendedAtStockExchange,omitempty"`
	CompanySubcategory                                                                *string `json:"companySubcategory,omitempty"`
	AuthorisedCapitalInInr                                                            *string `json:"authorisedCapitalInInr,omitempty"`
	CompanyStatusForEFiling                                                           *string `json:"companyStatusForEFiling,omitempty"`
	RocCode                                                                           *string `json:"rocCode,omitempty"`
	DateOfBalanceSheet                                                                *string `json:"dateOfBalanceSheet,omitempty"`
	DateOfIncorporation                                                               *string `json:"dateOfIncorporation,omitempty"`
	Cin                                                                               *string `json:"cin ,omitempty"`
	CompanyName                                                                       *string `json:"companyName,omitempty"`
}

ValidateResponseKycResultCompanyMasterData struct for ValidateResponseKycResultCompanyMasterData

func NewValidateResponseKycResultCompanyMasterData

func NewValidateResponseKycResultCompanyMasterData() *ValidateResponseKycResultCompanyMasterData

NewValidateResponseKycResultCompanyMasterData instantiates a new ValidateResponseKycResultCompanyMasterData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultCompanyMasterDataWithDefaults

func NewValidateResponseKycResultCompanyMasterDataWithDefaults() *ValidateResponseKycResultCompanyMasterData

NewValidateResponseKycResultCompanyMasterDataWithDefaults instantiates a new ValidateResponseKycResultCompanyMasterData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultCompanyMasterData) GetActiveCompliance

func (o *ValidateResponseKycResultCompanyMasterData) GetActiveCompliance() string

GetActiveCompliance returns the ActiveCompliance field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetActiveComplianceOk

func (o *ValidateResponseKycResultCompanyMasterData) GetActiveComplianceOk() (*string, bool)

GetActiveComplianceOk returns a tuple with the ActiveCompliance field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetAddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained

func (o *ValidateResponseKycResultCompanyMasterData) GetAddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained() string

GetAddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained returns the AddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetAddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintainedOk

func (o *ValidateResponseKycResultCompanyMasterData) GetAddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintainedOk() (*string, bool)

GetAddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintainedOk returns a tuple with the AddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetAuthorisedCapitalInInr

func (o *ValidateResponseKycResultCompanyMasterData) GetAuthorisedCapitalInInr() string

GetAuthorisedCapitalInInr returns the AuthorisedCapitalInInr field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetAuthorisedCapitalInInrOk

func (o *ValidateResponseKycResultCompanyMasterData) GetAuthorisedCapitalInInrOk() (*string, bool)

GetAuthorisedCapitalInInrOk returns a tuple with the AuthorisedCapitalInInr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetCin

GetCin returns the Cin field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetCinOk

GetCinOk returns a tuple with the Cin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetClassOfCompany

func (o *ValidateResponseKycResultCompanyMasterData) GetClassOfCompany() string

GetClassOfCompany returns the ClassOfCompany field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetClassOfCompanyOk

func (o *ValidateResponseKycResultCompanyMasterData) GetClassOfCompanyOk() (*string, bool)

GetClassOfCompanyOk returns a tuple with the ClassOfCompany field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetCompanyCategory

func (o *ValidateResponseKycResultCompanyMasterData) GetCompanyCategory() string

GetCompanyCategory returns the CompanyCategory field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetCompanyCategoryOk

func (o *ValidateResponseKycResultCompanyMasterData) GetCompanyCategoryOk() (*string, bool)

GetCompanyCategoryOk returns a tuple with the CompanyCategory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetCompanyName

GetCompanyName returns the CompanyName field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetCompanyNameOk

func (o *ValidateResponseKycResultCompanyMasterData) GetCompanyNameOk() (*string, bool)

GetCompanyNameOk returns a tuple with the CompanyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetCompanyStatusForEFiling

func (o *ValidateResponseKycResultCompanyMasterData) GetCompanyStatusForEFiling() string

GetCompanyStatusForEFiling returns the CompanyStatusForEFiling field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetCompanyStatusForEFilingOk

func (o *ValidateResponseKycResultCompanyMasterData) GetCompanyStatusForEFilingOk() (*string, bool)

GetCompanyStatusForEFilingOk returns a tuple with the CompanyStatusForEFiling field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetCompanySubcategory

func (o *ValidateResponseKycResultCompanyMasterData) GetCompanySubcategory() string

GetCompanySubcategory returns the CompanySubcategory field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetCompanySubcategoryOk

func (o *ValidateResponseKycResultCompanyMasterData) GetCompanySubcategoryOk() (*string, bool)

GetCompanySubcategoryOk returns a tuple with the CompanySubcategory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetDateOfBalanceSheet

func (o *ValidateResponseKycResultCompanyMasterData) GetDateOfBalanceSheet() string

GetDateOfBalanceSheet returns the DateOfBalanceSheet field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetDateOfBalanceSheetOk

func (o *ValidateResponseKycResultCompanyMasterData) GetDateOfBalanceSheetOk() (*string, bool)

GetDateOfBalanceSheetOk returns a tuple with the DateOfBalanceSheet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetDateOfIncorporation

func (o *ValidateResponseKycResultCompanyMasterData) GetDateOfIncorporation() string

GetDateOfIncorporation returns the DateOfIncorporation field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetDateOfIncorporationOk

func (o *ValidateResponseKycResultCompanyMasterData) GetDateOfIncorporationOk() (*string, bool)

GetDateOfIncorporationOk returns a tuple with the DateOfIncorporation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetDateOfLastAgm

func (o *ValidateResponseKycResultCompanyMasterData) GetDateOfLastAgm() string

GetDateOfLastAgm returns the DateOfLastAgm field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetDateOfLastAgmOk

func (o *ValidateResponseKycResultCompanyMasterData) GetDateOfLastAgmOk() (*string, bool)

GetDateOfLastAgmOk returns a tuple with the DateOfLastAgm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetEmailId

GetEmailId returns the EmailId field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetEmailIdOk

GetEmailIdOk returns a tuple with the EmailId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetNumberOfMembersApplicableInCaseOfCompanyWithoutShareCapital

func (o *ValidateResponseKycResultCompanyMasterData) GetNumberOfMembersApplicableInCaseOfCompanyWithoutShareCapital() string

GetNumberOfMembersApplicableInCaseOfCompanyWithoutShareCapital returns the NumberOfMembersApplicableInCaseOfCompanyWithoutShareCapital field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetNumberOfMembersApplicableInCaseOfCompanyWithoutShareCapitalOk

func (o *ValidateResponseKycResultCompanyMasterData) GetNumberOfMembersApplicableInCaseOfCompanyWithoutShareCapitalOk() (*string, bool)

GetNumberOfMembersApplicableInCaseOfCompanyWithoutShareCapitalOk returns a tuple with the NumberOfMembersApplicableInCaseOfCompanyWithoutShareCapital field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetPaidUpCapitalInInr

func (o *ValidateResponseKycResultCompanyMasterData) GetPaidUpCapitalInInr() string

GetPaidUpCapitalInInr returns the PaidUpCapitalInInr field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetPaidUpCapitalInInrOk

func (o *ValidateResponseKycResultCompanyMasterData) GetPaidUpCapitalInInrOk() (*string, bool)

GetPaidUpCapitalInInrOk returns a tuple with the PaidUpCapitalInInr field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetRegisteredAddress

func (o *ValidateResponseKycResultCompanyMasterData) GetRegisteredAddress() string

GetRegisteredAddress returns the RegisteredAddress field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetRegisteredAddressOk

func (o *ValidateResponseKycResultCompanyMasterData) GetRegisteredAddressOk() (*string, bool)

GetRegisteredAddressOk returns a tuple with the RegisteredAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetRegistrationNumber

func (o *ValidateResponseKycResultCompanyMasterData) GetRegistrationNumber() string

GetRegistrationNumber returns the RegistrationNumber field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetRegistrationNumberOk

func (o *ValidateResponseKycResultCompanyMasterData) GetRegistrationNumberOk() (*string, bool)

GetRegistrationNumberOk returns a tuple with the RegistrationNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetRocCode

GetRocCode returns the RocCode field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetRocCodeOk

GetRocCodeOk returns a tuple with the RocCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetSuspendedAtStockExchange

func (o *ValidateResponseKycResultCompanyMasterData) GetSuspendedAtStockExchange() string

GetSuspendedAtStockExchange returns the SuspendedAtStockExchange field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetSuspendedAtStockExchangeOk

func (o *ValidateResponseKycResultCompanyMasterData) GetSuspendedAtStockExchangeOk() (*string, bool)

GetSuspendedAtStockExchangeOk returns a tuple with the SuspendedAtStockExchange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) GetWhetherListedOrNot

func (o *ValidateResponseKycResultCompanyMasterData) GetWhetherListedOrNot() string

GetWhetherListedOrNot returns the WhetherListedOrNot field value if set, zero value otherwise.

func (*ValidateResponseKycResultCompanyMasterData) GetWhetherListedOrNotOk

func (o *ValidateResponseKycResultCompanyMasterData) GetWhetherListedOrNotOk() (*string, bool)

GetWhetherListedOrNotOk returns a tuple with the WhetherListedOrNot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasActiveCompliance

func (o *ValidateResponseKycResultCompanyMasterData) HasActiveCompliance() bool

HasActiveCompliance returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasAddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained

func (o *ValidateResponseKycResultCompanyMasterData) HasAddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained() bool

HasAddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasAuthorisedCapitalInInr

func (o *ValidateResponseKycResultCompanyMasterData) HasAuthorisedCapitalInInr() bool

HasAuthorisedCapitalInInr returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasCin

HasCin returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasClassOfCompany

func (o *ValidateResponseKycResultCompanyMasterData) HasClassOfCompany() bool

HasClassOfCompany returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasCompanyCategory

func (o *ValidateResponseKycResultCompanyMasterData) HasCompanyCategory() bool

HasCompanyCategory returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasCompanyName

HasCompanyName returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasCompanyStatusForEFiling

func (o *ValidateResponseKycResultCompanyMasterData) HasCompanyStatusForEFiling() bool

HasCompanyStatusForEFiling returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasCompanySubcategory

func (o *ValidateResponseKycResultCompanyMasterData) HasCompanySubcategory() bool

HasCompanySubcategory returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasDateOfBalanceSheet

func (o *ValidateResponseKycResultCompanyMasterData) HasDateOfBalanceSheet() bool

HasDateOfBalanceSheet returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasDateOfIncorporation

func (o *ValidateResponseKycResultCompanyMasterData) HasDateOfIncorporation() bool

HasDateOfIncorporation returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasDateOfLastAgm

func (o *ValidateResponseKycResultCompanyMasterData) HasDateOfLastAgm() bool

HasDateOfLastAgm returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasEmailId

HasEmailId returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasNumberOfMembersApplicableInCaseOfCompanyWithoutShareCapital

func (o *ValidateResponseKycResultCompanyMasterData) HasNumberOfMembersApplicableInCaseOfCompanyWithoutShareCapital() bool

HasNumberOfMembersApplicableInCaseOfCompanyWithoutShareCapital returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasPaidUpCapitalInInr

func (o *ValidateResponseKycResultCompanyMasterData) HasPaidUpCapitalInInr() bool

HasPaidUpCapitalInInr returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasRegisteredAddress

func (o *ValidateResponseKycResultCompanyMasterData) HasRegisteredAddress() bool

HasRegisteredAddress returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasRegistrationNumber

func (o *ValidateResponseKycResultCompanyMasterData) HasRegistrationNumber() bool

HasRegistrationNumber returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasRocCode

HasRocCode returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasSuspendedAtStockExchange

func (o *ValidateResponseKycResultCompanyMasterData) HasSuspendedAtStockExchange() bool

HasSuspendedAtStockExchange returns a boolean if a field has been set.

func (*ValidateResponseKycResultCompanyMasterData) HasWhetherListedOrNot

func (o *ValidateResponseKycResultCompanyMasterData) HasWhetherListedOrNot() bool

HasWhetherListedOrNot returns a boolean if a field has been set.

func (ValidateResponseKycResultCompanyMasterData) MarshalJSON

func (*ValidateResponseKycResultCompanyMasterData) SetActiveCompliance

func (o *ValidateResponseKycResultCompanyMasterData) SetActiveCompliance(v string)

SetActiveCompliance gets a reference to the given string and assigns it to the ActiveCompliance field.

func (*ValidateResponseKycResultCompanyMasterData) SetAddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained

func (o *ValidateResponseKycResultCompanyMasterData) SetAddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained(v string)

SetAddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained gets a reference to the given string and assigns it to the AddressOtherThanRegisteredOfficeWhereAllOrAnyBooksOfAccountAndPapersAreMaintained field.

func (*ValidateResponseKycResultCompanyMasterData) SetAuthorisedCapitalInInr

func (o *ValidateResponseKycResultCompanyMasterData) SetAuthorisedCapitalInInr(v string)

SetAuthorisedCapitalInInr gets a reference to the given string and assigns it to the AuthorisedCapitalInInr field.

func (*ValidateResponseKycResultCompanyMasterData) SetCin

SetCin gets a reference to the given string and assigns it to the Cin field.

func (*ValidateResponseKycResultCompanyMasterData) SetClassOfCompany

func (o *ValidateResponseKycResultCompanyMasterData) SetClassOfCompany(v string)

SetClassOfCompany gets a reference to the given string and assigns it to the ClassOfCompany field.

func (*ValidateResponseKycResultCompanyMasterData) SetCompanyCategory

func (o *ValidateResponseKycResultCompanyMasterData) SetCompanyCategory(v string)

SetCompanyCategory gets a reference to the given string and assigns it to the CompanyCategory field.

func (*ValidateResponseKycResultCompanyMasterData) SetCompanyName

SetCompanyName gets a reference to the given string and assigns it to the CompanyName field.

func (*ValidateResponseKycResultCompanyMasterData) SetCompanyStatusForEFiling

func (o *ValidateResponseKycResultCompanyMasterData) SetCompanyStatusForEFiling(v string)

SetCompanyStatusForEFiling gets a reference to the given string and assigns it to the CompanyStatusForEFiling field.

func (*ValidateResponseKycResultCompanyMasterData) SetCompanySubcategory

func (o *ValidateResponseKycResultCompanyMasterData) SetCompanySubcategory(v string)

SetCompanySubcategory gets a reference to the given string and assigns it to the CompanySubcategory field.

func (*ValidateResponseKycResultCompanyMasterData) SetDateOfBalanceSheet

func (o *ValidateResponseKycResultCompanyMasterData) SetDateOfBalanceSheet(v string)

SetDateOfBalanceSheet gets a reference to the given string and assigns it to the DateOfBalanceSheet field.

func (*ValidateResponseKycResultCompanyMasterData) SetDateOfIncorporation

func (o *ValidateResponseKycResultCompanyMasterData) SetDateOfIncorporation(v string)

SetDateOfIncorporation gets a reference to the given string and assigns it to the DateOfIncorporation field.

func (*ValidateResponseKycResultCompanyMasterData) SetDateOfLastAgm

func (o *ValidateResponseKycResultCompanyMasterData) SetDateOfLastAgm(v string)

SetDateOfLastAgm gets a reference to the given string and assigns it to the DateOfLastAgm field.

func (*ValidateResponseKycResultCompanyMasterData) SetEmailId

SetEmailId gets a reference to the given string and assigns it to the EmailId field.

func (*ValidateResponseKycResultCompanyMasterData) SetNumberOfMembersApplicableInCaseOfCompanyWithoutShareCapital

func (o *ValidateResponseKycResultCompanyMasterData) SetNumberOfMembersApplicableInCaseOfCompanyWithoutShareCapital(v string)

SetNumberOfMembersApplicableInCaseOfCompanyWithoutShareCapital gets a reference to the given string and assigns it to the NumberOfMembersApplicableInCaseOfCompanyWithoutShareCapital field.

func (*ValidateResponseKycResultCompanyMasterData) SetPaidUpCapitalInInr

func (o *ValidateResponseKycResultCompanyMasterData) SetPaidUpCapitalInInr(v string)

SetPaidUpCapitalInInr gets a reference to the given string and assigns it to the PaidUpCapitalInInr field.

func (*ValidateResponseKycResultCompanyMasterData) SetRegisteredAddress

func (o *ValidateResponseKycResultCompanyMasterData) SetRegisteredAddress(v string)

SetRegisteredAddress gets a reference to the given string and assigns it to the RegisteredAddress field.

func (*ValidateResponseKycResultCompanyMasterData) SetRegistrationNumber

func (o *ValidateResponseKycResultCompanyMasterData) SetRegistrationNumber(v string)

SetRegistrationNumber gets a reference to the given string and assigns it to the RegistrationNumber field.

func (*ValidateResponseKycResultCompanyMasterData) SetRocCode

SetRocCode gets a reference to the given string and assigns it to the RocCode field.

func (*ValidateResponseKycResultCompanyMasterData) SetSuspendedAtStockExchange

func (o *ValidateResponseKycResultCompanyMasterData) SetSuspendedAtStockExchange(v string)

SetSuspendedAtStockExchange gets a reference to the given string and assigns it to the SuspendedAtStockExchange field.

func (*ValidateResponseKycResultCompanyMasterData) SetWhetherListedOrNot

func (o *ValidateResponseKycResultCompanyMasterData) SetWhetherListedOrNot(v string)

SetWhetherListedOrNot gets a reference to the given string and assigns it to the WhetherListedOrNot field.

type ValidateResponseKycResultDirectorData

type ValidateResponseKycResultDirectorData struct {
	Din  *string `json:"din,omitempty"`
	Name *string `json:"name,omitempty"`
}

ValidateResponseKycResultDirectorData struct for ValidateResponseKycResultDirectorData

func NewValidateResponseKycResultDirectorData

func NewValidateResponseKycResultDirectorData() *ValidateResponseKycResultDirectorData

NewValidateResponseKycResultDirectorData instantiates a new ValidateResponseKycResultDirectorData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultDirectorDataWithDefaults

func NewValidateResponseKycResultDirectorDataWithDefaults() *ValidateResponseKycResultDirectorData

NewValidateResponseKycResultDirectorDataWithDefaults instantiates a new ValidateResponseKycResultDirectorData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultDirectorData) GetDin

GetDin returns the Din field value if set, zero value otherwise.

func (*ValidateResponseKycResultDirectorData) GetDinOk

GetDinOk returns a tuple with the Din field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultDirectorData) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ValidateResponseKycResultDirectorData) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultDirectorData) HasDin

HasDin returns a boolean if a field has been set.

func (*ValidateResponseKycResultDirectorData) HasName

HasName returns a boolean if a field has been set.

func (ValidateResponseKycResultDirectorData) MarshalJSON

func (o ValidateResponseKycResultDirectorData) MarshalJSON() ([]byte, error)

func (*ValidateResponseKycResultDirectorData) SetDin

SetDin gets a reference to the given string and assigns it to the Din field.

func (*ValidateResponseKycResultDirectorData) SetName

SetName gets a reference to the given string and assigns it to the Name field.

type ValidateResponseKycResultDirectors

type ValidateResponseKycResultDirectors struct {
	ArrayOfValidateResponseKycResultDirectorsOneOfInner *[]ValidateResponseKycResultDirectorsOneOfInner
	String                                              *string
}

ValidateResponseKycResultDirectors - struct for ValidateResponseKycResultDirectors

func ArrayOfValidateResponseKycResultDirectorsOneOfInnerAsValidateResponseKycResultDirectors

func ArrayOfValidateResponseKycResultDirectorsOneOfInnerAsValidateResponseKycResultDirectors(v *[]ValidateResponseKycResultDirectorsOneOfInner) ValidateResponseKycResultDirectors

[]ValidateResponseKycResultDirectorsOneOfInnerAsValidateResponseKycResultDirectors is a convenience function that returns []ValidateResponseKycResultDirectorsOneOfInner wrapped in ValidateResponseKycResultDirectors

func StringAsValidateResponseKycResultDirectors

func StringAsValidateResponseKycResultDirectors(v *string) ValidateResponseKycResultDirectors

stringAsValidateResponseKycResultDirectors is a convenience function that returns string wrapped in ValidateResponseKycResultDirectors

func (*ValidateResponseKycResultDirectors) GetActualInstance

func (obj *ValidateResponseKycResultDirectors) GetActualInstance() interface{}

Get the actual instance

func (ValidateResponseKycResultDirectors) MarshalJSON

func (src ValidateResponseKycResultDirectors) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*ValidateResponseKycResultDirectors) UnmarshalJSON

func (dst *ValidateResponseKycResultDirectors) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type ValidateResponseKycResultDirectorsOneOfInner

type ValidateResponseKycResultDirectorsOneOfInner struct {
	EndDate        *string `json:"endDate,omitempty"`
	SurrenderedDin *string `json:"surrenderedDin,omitempty"`
	DinOrPan       *string `json:"dinOrPan,omitempty"`
	BeginDate      *string `json:"beginDate,omitempty"`
	Name           *string `json:"name,omitempty"`
}

ValidateResponseKycResultDirectorsOneOfInner struct for ValidateResponseKycResultDirectorsOneOfInner

func NewValidateResponseKycResultDirectorsOneOfInner

func NewValidateResponseKycResultDirectorsOneOfInner() *ValidateResponseKycResultDirectorsOneOfInner

NewValidateResponseKycResultDirectorsOneOfInner instantiates a new ValidateResponseKycResultDirectorsOneOfInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultDirectorsOneOfInnerWithDefaults

func NewValidateResponseKycResultDirectorsOneOfInnerWithDefaults() *ValidateResponseKycResultDirectorsOneOfInner

NewValidateResponseKycResultDirectorsOneOfInnerWithDefaults instantiates a new ValidateResponseKycResultDirectorsOneOfInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultDirectorsOneOfInner) GetBeginDate

GetBeginDate returns the BeginDate field value if set, zero value otherwise.

func (*ValidateResponseKycResultDirectorsOneOfInner) GetBeginDateOk

GetBeginDateOk returns a tuple with the BeginDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultDirectorsOneOfInner) GetDinOrPan

GetDinOrPan returns the DinOrPan field value if set, zero value otherwise.

func (*ValidateResponseKycResultDirectorsOneOfInner) GetDinOrPanOk

GetDinOrPanOk returns a tuple with the DinOrPan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultDirectorsOneOfInner) GetEndDate

GetEndDate returns the EndDate field value if set, zero value otherwise.

func (*ValidateResponseKycResultDirectorsOneOfInner) GetEndDateOk

GetEndDateOk returns a tuple with the EndDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultDirectorsOneOfInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ValidateResponseKycResultDirectorsOneOfInner) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultDirectorsOneOfInner) GetSurrenderedDin

GetSurrenderedDin returns the SurrenderedDin field value if set, zero value otherwise.

func (*ValidateResponseKycResultDirectorsOneOfInner) GetSurrenderedDinOk

func (o *ValidateResponseKycResultDirectorsOneOfInner) GetSurrenderedDinOk() (*string, bool)

GetSurrenderedDinOk returns a tuple with the SurrenderedDin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultDirectorsOneOfInner) HasBeginDate

HasBeginDate returns a boolean if a field has been set.

func (*ValidateResponseKycResultDirectorsOneOfInner) HasDinOrPan

HasDinOrPan returns a boolean if a field has been set.

func (*ValidateResponseKycResultDirectorsOneOfInner) HasEndDate

HasEndDate returns a boolean if a field has been set.

func (*ValidateResponseKycResultDirectorsOneOfInner) HasName

HasName returns a boolean if a field has been set.

func (*ValidateResponseKycResultDirectorsOneOfInner) HasSurrenderedDin

func (o *ValidateResponseKycResultDirectorsOneOfInner) HasSurrenderedDin() bool

HasSurrenderedDin returns a boolean if a field has been set.

func (ValidateResponseKycResultDirectorsOneOfInner) MarshalJSON

func (*ValidateResponseKycResultDirectorsOneOfInner) SetBeginDate

SetBeginDate gets a reference to the given string and assigns it to the BeginDate field.

func (*ValidateResponseKycResultDirectorsOneOfInner) SetDinOrPan

SetDinOrPan gets a reference to the given string and assigns it to the DinOrPan field.

func (*ValidateResponseKycResultDirectorsOneOfInner) SetEndDate

SetEndDate gets a reference to the given string and assigns it to the EndDate field.

func (*ValidateResponseKycResultDirectorsOneOfInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*ValidateResponseKycResultDirectorsOneOfInner) SetSurrenderedDin

func (o *ValidateResponseKycResultDirectorsOneOfInner) SetSurrenderedDin(v string)

SetSurrenderedDin gets a reference to the given string and assigns it to the SurrenderedDin field.

type ValidateResponseKycResultFilingStatusInner

type ValidateResponseKycResultFilingStatusInner struct {
	FilingYear         *string `json:"filingYear,omitempty"`
	FilingForMonth     *string `json:"filingForMonth,omitempty"`
	FilingMethod       *string `json:"filingMethod,omitempty"`
	FilingDate         *string `json:"filingDate,omitempty"`
	FilingGstType      *string `json:"filingGstType,omitempty"`
	FilingAnnualReturn *string `json:"filingAnnualReturn,omitempty"`
	FilingStatus       *string `json:"filingStatus,omitempty"`
}

ValidateResponseKycResultFilingStatusInner struct for ValidateResponseKycResultFilingStatusInner

func NewValidateResponseKycResultFilingStatusInner

func NewValidateResponseKycResultFilingStatusInner() *ValidateResponseKycResultFilingStatusInner

NewValidateResponseKycResultFilingStatusInner instantiates a new ValidateResponseKycResultFilingStatusInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultFilingStatusInnerWithDefaults

func NewValidateResponseKycResultFilingStatusInnerWithDefaults() *ValidateResponseKycResultFilingStatusInner

NewValidateResponseKycResultFilingStatusInnerWithDefaults instantiates a new ValidateResponseKycResultFilingStatusInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultFilingStatusInner) GetFilingAnnualReturn

func (o *ValidateResponseKycResultFilingStatusInner) GetFilingAnnualReturn() string

GetFilingAnnualReturn returns the FilingAnnualReturn field value if set, zero value otherwise.

func (*ValidateResponseKycResultFilingStatusInner) GetFilingAnnualReturnOk

func (o *ValidateResponseKycResultFilingStatusInner) GetFilingAnnualReturnOk() (*string, bool)

GetFilingAnnualReturnOk returns a tuple with the FilingAnnualReturn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultFilingStatusInner) GetFilingDate

GetFilingDate returns the FilingDate field value if set, zero value otherwise.

func (*ValidateResponseKycResultFilingStatusInner) GetFilingDateOk

func (o *ValidateResponseKycResultFilingStatusInner) GetFilingDateOk() (*string, bool)

GetFilingDateOk returns a tuple with the FilingDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultFilingStatusInner) GetFilingForMonth

func (o *ValidateResponseKycResultFilingStatusInner) GetFilingForMonth() string

GetFilingForMonth returns the FilingForMonth field value if set, zero value otherwise.

func (*ValidateResponseKycResultFilingStatusInner) GetFilingForMonthOk

func (o *ValidateResponseKycResultFilingStatusInner) GetFilingForMonthOk() (*string, bool)

GetFilingForMonthOk returns a tuple with the FilingForMonth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultFilingStatusInner) GetFilingGstType

func (o *ValidateResponseKycResultFilingStatusInner) GetFilingGstType() string

GetFilingGstType returns the FilingGstType field value if set, zero value otherwise.

func (*ValidateResponseKycResultFilingStatusInner) GetFilingGstTypeOk

func (o *ValidateResponseKycResultFilingStatusInner) GetFilingGstTypeOk() (*string, bool)

GetFilingGstTypeOk returns a tuple with the FilingGstType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultFilingStatusInner) GetFilingMethod

GetFilingMethod returns the FilingMethod field value if set, zero value otherwise.

func (*ValidateResponseKycResultFilingStatusInner) GetFilingMethodOk

func (o *ValidateResponseKycResultFilingStatusInner) GetFilingMethodOk() (*string, bool)

GetFilingMethodOk returns a tuple with the FilingMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultFilingStatusInner) GetFilingStatus

GetFilingStatus returns the FilingStatus field value if set, zero value otherwise.

func (*ValidateResponseKycResultFilingStatusInner) GetFilingStatusOk

func (o *ValidateResponseKycResultFilingStatusInner) GetFilingStatusOk() (*string, bool)

GetFilingStatusOk returns a tuple with the FilingStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultFilingStatusInner) GetFilingYear

GetFilingYear returns the FilingYear field value if set, zero value otherwise.

func (*ValidateResponseKycResultFilingStatusInner) GetFilingYearOk

func (o *ValidateResponseKycResultFilingStatusInner) GetFilingYearOk() (*string, bool)

GetFilingYearOk returns a tuple with the FilingYear field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultFilingStatusInner) HasFilingAnnualReturn

func (o *ValidateResponseKycResultFilingStatusInner) HasFilingAnnualReturn() bool

HasFilingAnnualReturn returns a boolean if a field has been set.

func (*ValidateResponseKycResultFilingStatusInner) HasFilingDate

HasFilingDate returns a boolean if a field has been set.

func (*ValidateResponseKycResultFilingStatusInner) HasFilingForMonth

func (o *ValidateResponseKycResultFilingStatusInner) HasFilingForMonth() bool

HasFilingForMonth returns a boolean if a field has been set.

func (*ValidateResponseKycResultFilingStatusInner) HasFilingGstType

func (o *ValidateResponseKycResultFilingStatusInner) HasFilingGstType() bool

HasFilingGstType returns a boolean if a field has been set.

func (*ValidateResponseKycResultFilingStatusInner) HasFilingMethod

func (o *ValidateResponseKycResultFilingStatusInner) HasFilingMethod() bool

HasFilingMethod returns a boolean if a field has been set.

func (*ValidateResponseKycResultFilingStatusInner) HasFilingStatus

func (o *ValidateResponseKycResultFilingStatusInner) HasFilingStatus() bool

HasFilingStatus returns a boolean if a field has been set.

func (*ValidateResponseKycResultFilingStatusInner) HasFilingYear

HasFilingYear returns a boolean if a field has been set.

func (ValidateResponseKycResultFilingStatusInner) MarshalJSON

func (*ValidateResponseKycResultFilingStatusInner) SetFilingAnnualReturn

func (o *ValidateResponseKycResultFilingStatusInner) SetFilingAnnualReturn(v string)

SetFilingAnnualReturn gets a reference to the given string and assigns it to the FilingAnnualReturn field.

func (*ValidateResponseKycResultFilingStatusInner) SetFilingDate

SetFilingDate gets a reference to the given string and assigns it to the FilingDate field.

func (*ValidateResponseKycResultFilingStatusInner) SetFilingForMonth

func (o *ValidateResponseKycResultFilingStatusInner) SetFilingForMonth(v string)

SetFilingForMonth gets a reference to the given string and assigns it to the FilingForMonth field.

func (*ValidateResponseKycResultFilingStatusInner) SetFilingGstType

func (o *ValidateResponseKycResultFilingStatusInner) SetFilingGstType(v string)

SetFilingGstType gets a reference to the given string and assigns it to the FilingGstType field.

func (*ValidateResponseKycResultFilingStatusInner) SetFilingMethod

func (o *ValidateResponseKycResultFilingStatusInner) SetFilingMethod(v string)

SetFilingMethod gets a reference to the given string and assigns it to the FilingMethod field.

func (*ValidateResponseKycResultFilingStatusInner) SetFilingStatus

func (o *ValidateResponseKycResultFilingStatusInner) SetFilingStatus(v string)

SetFilingStatus gets a reference to the given string and assigns it to the FilingStatus field.

func (*ValidateResponseKycResultFilingStatusInner) SetFilingYear

SetFilingYear gets a reference to the given string and assigns it to the FilingYear field.

type ValidateResponseKycResultForeignCompanyMasterData

type ValidateResponseKycResultForeignCompanyMasterData struct {
	EmailId                                             *string `json:"emailId,omitempty"`
	ForeignCompanyWithShareCapital                      *string `json:"foreignCompanyWithShareCapital,omitempty"`
	RegisteredAddress                                   *string `json:"registeredAddress,omitempty"`
	TypeOfOffice                                        *string `json:"typeOfOffice,omitempty"`
	DateOfIncorporation                                 *string `json:"dateOfIncorporation,omitempty"`
	CountryOfIncorporation                              *string `json:"countryOfIncorporation,omitempty"`
	CompanyName                                         *string `json:"companyName,omitempty"`
	CompanyStatus                                       *string `json:"companyStatus,omitempty"`
	Details                                             *string `json:"details,omitempty"`
	Fcrn                                                *string `json:"fcrn ,omitempty"`
	DescriptionOfMainDivision                           *string `json:"descriptionOfMainDivision,omitempty"`
	MainDivisionOfBusinessActivityToBeCarriedOutInIndia *string `json:"mainDivisionOfBusinessActivityToBeCarriedOutInIndia,omitempty"`
}

ValidateResponseKycResultForeignCompanyMasterData struct for ValidateResponseKycResultForeignCompanyMasterData

func NewValidateResponseKycResultForeignCompanyMasterData

func NewValidateResponseKycResultForeignCompanyMasterData() *ValidateResponseKycResultForeignCompanyMasterData

NewValidateResponseKycResultForeignCompanyMasterData instantiates a new ValidateResponseKycResultForeignCompanyMasterData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultForeignCompanyMasterDataWithDefaults

func NewValidateResponseKycResultForeignCompanyMasterDataWithDefaults() *ValidateResponseKycResultForeignCompanyMasterData

NewValidateResponseKycResultForeignCompanyMasterDataWithDefaults instantiates a new ValidateResponseKycResultForeignCompanyMasterData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultForeignCompanyMasterData) GetCompanyName

GetCompanyName returns the CompanyName field value if set, zero value otherwise.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetCompanyNameOk

GetCompanyNameOk returns a tuple with the CompanyName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetCompanyStatus

GetCompanyStatus returns the CompanyStatus field value if set, zero value otherwise.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetCompanyStatusOk

GetCompanyStatusOk returns a tuple with the CompanyStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetCountryOfIncorporation

func (o *ValidateResponseKycResultForeignCompanyMasterData) GetCountryOfIncorporation() string

GetCountryOfIncorporation returns the CountryOfIncorporation field value if set, zero value otherwise.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetCountryOfIncorporationOk

func (o *ValidateResponseKycResultForeignCompanyMasterData) GetCountryOfIncorporationOk() (*string, bool)

GetCountryOfIncorporationOk returns a tuple with the CountryOfIncorporation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetDateOfIncorporation

func (o *ValidateResponseKycResultForeignCompanyMasterData) GetDateOfIncorporation() string

GetDateOfIncorporation returns the DateOfIncorporation field value if set, zero value otherwise.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetDateOfIncorporationOk

func (o *ValidateResponseKycResultForeignCompanyMasterData) GetDateOfIncorporationOk() (*string, bool)

GetDateOfIncorporationOk returns a tuple with the DateOfIncorporation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetDescriptionOfMainDivision

func (o *ValidateResponseKycResultForeignCompanyMasterData) GetDescriptionOfMainDivision() string

GetDescriptionOfMainDivision returns the DescriptionOfMainDivision field value if set, zero value otherwise.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetDescriptionOfMainDivisionOk

func (o *ValidateResponseKycResultForeignCompanyMasterData) GetDescriptionOfMainDivisionOk() (*string, bool)

GetDescriptionOfMainDivisionOk returns a tuple with the DescriptionOfMainDivision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetDetails

GetDetails returns the Details field value if set, zero value otherwise.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetDetailsOk

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetEmailId

GetEmailId returns the EmailId field value if set, zero value otherwise.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetEmailIdOk

GetEmailIdOk returns a tuple with the EmailId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetFcrn

GetFcrn returns the Fcrn field value if set, zero value otherwise.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetFcrnOk

GetFcrnOk returns a tuple with the Fcrn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetForeignCompanyWithShareCapital

func (o *ValidateResponseKycResultForeignCompanyMasterData) GetForeignCompanyWithShareCapital() string

GetForeignCompanyWithShareCapital returns the ForeignCompanyWithShareCapital field value if set, zero value otherwise.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetForeignCompanyWithShareCapitalOk

func (o *ValidateResponseKycResultForeignCompanyMasterData) GetForeignCompanyWithShareCapitalOk() (*string, bool)

GetForeignCompanyWithShareCapitalOk returns a tuple with the ForeignCompanyWithShareCapital field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetMainDivisionOfBusinessActivityToBeCarriedOutInIndia

func (o *ValidateResponseKycResultForeignCompanyMasterData) GetMainDivisionOfBusinessActivityToBeCarriedOutInIndia() string

GetMainDivisionOfBusinessActivityToBeCarriedOutInIndia returns the MainDivisionOfBusinessActivityToBeCarriedOutInIndia field value if set, zero value otherwise.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetMainDivisionOfBusinessActivityToBeCarriedOutInIndiaOk

func (o *ValidateResponseKycResultForeignCompanyMasterData) GetMainDivisionOfBusinessActivityToBeCarriedOutInIndiaOk() (*string, bool)

GetMainDivisionOfBusinessActivityToBeCarriedOutInIndiaOk returns a tuple with the MainDivisionOfBusinessActivityToBeCarriedOutInIndia field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetRegisteredAddress

GetRegisteredAddress returns the RegisteredAddress field value if set, zero value otherwise.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetRegisteredAddressOk

func (o *ValidateResponseKycResultForeignCompanyMasterData) GetRegisteredAddressOk() (*string, bool)

GetRegisteredAddressOk returns a tuple with the RegisteredAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetTypeOfOffice

GetTypeOfOffice returns the TypeOfOffice field value if set, zero value otherwise.

func (*ValidateResponseKycResultForeignCompanyMasterData) GetTypeOfOfficeOk

GetTypeOfOfficeOk returns a tuple with the TypeOfOffice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) HasCompanyName

HasCompanyName returns a boolean if a field has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) HasCompanyStatus

HasCompanyStatus returns a boolean if a field has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) HasCountryOfIncorporation

func (o *ValidateResponseKycResultForeignCompanyMasterData) HasCountryOfIncorporation() bool

HasCountryOfIncorporation returns a boolean if a field has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) HasDateOfIncorporation

func (o *ValidateResponseKycResultForeignCompanyMasterData) HasDateOfIncorporation() bool

HasDateOfIncorporation returns a boolean if a field has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) HasDescriptionOfMainDivision

func (o *ValidateResponseKycResultForeignCompanyMasterData) HasDescriptionOfMainDivision() bool

HasDescriptionOfMainDivision returns a boolean if a field has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) HasDetails

HasDetails returns a boolean if a field has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) HasEmailId

HasEmailId returns a boolean if a field has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) HasFcrn

HasFcrn returns a boolean if a field has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) HasForeignCompanyWithShareCapital

func (o *ValidateResponseKycResultForeignCompanyMasterData) HasForeignCompanyWithShareCapital() bool

HasForeignCompanyWithShareCapital returns a boolean if a field has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) HasMainDivisionOfBusinessActivityToBeCarriedOutInIndia

func (o *ValidateResponseKycResultForeignCompanyMasterData) HasMainDivisionOfBusinessActivityToBeCarriedOutInIndia() bool

HasMainDivisionOfBusinessActivityToBeCarriedOutInIndia returns a boolean if a field has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) HasRegisteredAddress

func (o *ValidateResponseKycResultForeignCompanyMasterData) HasRegisteredAddress() bool

HasRegisteredAddress returns a boolean if a field has been set.

func (*ValidateResponseKycResultForeignCompanyMasterData) HasTypeOfOffice

HasTypeOfOffice returns a boolean if a field has been set.

func (ValidateResponseKycResultForeignCompanyMasterData) MarshalJSON

func (*ValidateResponseKycResultForeignCompanyMasterData) SetCompanyName

SetCompanyName gets a reference to the given string and assigns it to the CompanyName field.

func (*ValidateResponseKycResultForeignCompanyMasterData) SetCompanyStatus

SetCompanyStatus gets a reference to the given string and assigns it to the CompanyStatus field.

func (*ValidateResponseKycResultForeignCompanyMasterData) SetCountryOfIncorporation

func (o *ValidateResponseKycResultForeignCompanyMasterData) SetCountryOfIncorporation(v string)

SetCountryOfIncorporation gets a reference to the given string and assigns it to the CountryOfIncorporation field.

func (*ValidateResponseKycResultForeignCompanyMasterData) SetDateOfIncorporation

func (o *ValidateResponseKycResultForeignCompanyMasterData) SetDateOfIncorporation(v string)

SetDateOfIncorporation gets a reference to the given string and assigns it to the DateOfIncorporation field.

func (*ValidateResponseKycResultForeignCompanyMasterData) SetDescriptionOfMainDivision

func (o *ValidateResponseKycResultForeignCompanyMasterData) SetDescriptionOfMainDivision(v string)

SetDescriptionOfMainDivision gets a reference to the given string and assigns it to the DescriptionOfMainDivision field.

func (*ValidateResponseKycResultForeignCompanyMasterData) SetDetails

SetDetails gets a reference to the given string and assigns it to the Details field.

func (*ValidateResponseKycResultForeignCompanyMasterData) SetEmailId

SetEmailId gets a reference to the given string and assigns it to the EmailId field.

func (*ValidateResponseKycResultForeignCompanyMasterData) SetFcrn

SetFcrn gets a reference to the given string and assigns it to the Fcrn field.

func (*ValidateResponseKycResultForeignCompanyMasterData) SetForeignCompanyWithShareCapital

func (o *ValidateResponseKycResultForeignCompanyMasterData) SetForeignCompanyWithShareCapital(v string)

SetForeignCompanyWithShareCapital gets a reference to the given string and assigns it to the ForeignCompanyWithShareCapital field.

func (*ValidateResponseKycResultForeignCompanyMasterData) SetMainDivisionOfBusinessActivityToBeCarriedOutInIndia

func (o *ValidateResponseKycResultForeignCompanyMasterData) SetMainDivisionOfBusinessActivityToBeCarriedOutInIndia(v string)

SetMainDivisionOfBusinessActivityToBeCarriedOutInIndia gets a reference to the given string and assigns it to the MainDivisionOfBusinessActivityToBeCarriedOutInIndia field.

func (*ValidateResponseKycResultForeignCompanyMasterData) SetRegisteredAddress

func (o *ValidateResponseKycResultForeignCompanyMasterData) SetRegisteredAddress(v string)

SetRegisteredAddress gets a reference to the given string and assigns it to the RegisteredAddress field.

func (*ValidateResponseKycResultForeignCompanyMasterData) SetTypeOfOffice

SetTypeOfOffice gets a reference to the given string and assigns it to the TypeOfOffice field.

type ValidateResponseKycResultLlpMasterData

type ValidateResponseKycResultLlpMasterData struct {
	EmailId                                                                   *string `json:"emailId,omitempty"`
	RegisteredAddress                                                         *string `json:"registeredAddress,omitempty"`
	DateOfLastFinancialYearEndDateForWhichAnnualReturnFiled                   *string `json:"dateOfLastFinancialYearEndDateForWhichAnnualReturnFiled,omitempty"`
	DateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled *string `json:"dateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled,omitempty"`
	MainDivisionOfBusinessActivityToBeCarriedOutInIndia                       *string `json:"mainDivisionOfBusinessActivityToBeCarriedOutInIndia,omitempty"`
	PreviousFircompanyDetailifApplicable                                      *string `json:"previousFircompanyDetailifApplicable,omitempty"`
	RocCode                                                                   *string `json:"rocCode,omitempty"`
	NumberOfDesignatedPartners                                                *string `json:"numberOfDesignatedPartners,omitempty"`
	DateOfIncorporation                                                       *string `json:"dateOfIncorporation,omitempty"`
	LlpName                                                                   *string `json:"llpName,omitempty"`
	TotalObligationOfContribution                                             *string `json:"totalObligationOfContribution,omitempty"`
	Llpin                                                                     *string `json:"llpin ,omitempty"`
	LlpStatus                                                                 *string `json:"llpStatus,omitempty"`
	DescriptionOfMainDivision                                                 *string `json:"descriptionOfMainDivision,omitempty"`
	NumberOfPartners                                                          *string `json:"numberOfPartners,omitempty"`
}

ValidateResponseKycResultLlpMasterData struct for ValidateResponseKycResultLlpMasterData

func NewValidateResponseKycResultLlpMasterData

func NewValidateResponseKycResultLlpMasterData() *ValidateResponseKycResultLlpMasterData

NewValidateResponseKycResultLlpMasterData instantiates a new ValidateResponseKycResultLlpMasterData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultLlpMasterDataWithDefaults

func NewValidateResponseKycResultLlpMasterDataWithDefaults() *ValidateResponseKycResultLlpMasterData

NewValidateResponseKycResultLlpMasterDataWithDefaults instantiates a new ValidateResponseKycResultLlpMasterData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultLlpMasterData) GetDateOfIncorporation

func (o *ValidateResponseKycResultLlpMasterData) GetDateOfIncorporation() string

GetDateOfIncorporation returns the DateOfIncorporation field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetDateOfIncorporationOk

func (o *ValidateResponseKycResultLlpMasterData) GetDateOfIncorporationOk() (*string, bool)

GetDateOfIncorporationOk returns a tuple with the DateOfIncorporation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetDateOfLastFinancialYearEndDateForWhichAnnualReturnFiled

func (o *ValidateResponseKycResultLlpMasterData) GetDateOfLastFinancialYearEndDateForWhichAnnualReturnFiled() string

GetDateOfLastFinancialYearEndDateForWhichAnnualReturnFiled returns the DateOfLastFinancialYearEndDateForWhichAnnualReturnFiled field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetDateOfLastFinancialYearEndDateForWhichAnnualReturnFiledOk

func (o *ValidateResponseKycResultLlpMasterData) GetDateOfLastFinancialYearEndDateForWhichAnnualReturnFiledOk() (*string, bool)

GetDateOfLastFinancialYearEndDateForWhichAnnualReturnFiledOk returns a tuple with the DateOfLastFinancialYearEndDateForWhichAnnualReturnFiled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetDateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled

func (o *ValidateResponseKycResultLlpMasterData) GetDateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled() string

GetDateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled returns the DateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetDateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiledOk

func (o *ValidateResponseKycResultLlpMasterData) GetDateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiledOk() (*string, bool)

GetDateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiledOk returns a tuple with the DateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetDescriptionOfMainDivision

func (o *ValidateResponseKycResultLlpMasterData) GetDescriptionOfMainDivision() string

GetDescriptionOfMainDivision returns the DescriptionOfMainDivision field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetDescriptionOfMainDivisionOk

func (o *ValidateResponseKycResultLlpMasterData) GetDescriptionOfMainDivisionOk() (*string, bool)

GetDescriptionOfMainDivisionOk returns a tuple with the DescriptionOfMainDivision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetEmailId

GetEmailId returns the EmailId field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetEmailIdOk

func (o *ValidateResponseKycResultLlpMasterData) GetEmailIdOk() (*string, bool)

GetEmailIdOk returns a tuple with the EmailId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetLlpName

GetLlpName returns the LlpName field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetLlpNameOk

func (o *ValidateResponseKycResultLlpMasterData) GetLlpNameOk() (*string, bool)

GetLlpNameOk returns a tuple with the LlpName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetLlpStatus

GetLlpStatus returns the LlpStatus field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetLlpStatusOk

func (o *ValidateResponseKycResultLlpMasterData) GetLlpStatusOk() (*string, bool)

GetLlpStatusOk returns a tuple with the LlpStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetLlpin

GetLlpin returns the Llpin field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetLlpinOk

GetLlpinOk returns a tuple with the Llpin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetMainDivisionOfBusinessActivityToBeCarriedOutInIndia

func (o *ValidateResponseKycResultLlpMasterData) GetMainDivisionOfBusinessActivityToBeCarriedOutInIndia() string

GetMainDivisionOfBusinessActivityToBeCarriedOutInIndia returns the MainDivisionOfBusinessActivityToBeCarriedOutInIndia field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetMainDivisionOfBusinessActivityToBeCarriedOutInIndiaOk

func (o *ValidateResponseKycResultLlpMasterData) GetMainDivisionOfBusinessActivityToBeCarriedOutInIndiaOk() (*string, bool)

GetMainDivisionOfBusinessActivityToBeCarriedOutInIndiaOk returns a tuple with the MainDivisionOfBusinessActivityToBeCarriedOutInIndia field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetNumberOfDesignatedPartners

func (o *ValidateResponseKycResultLlpMasterData) GetNumberOfDesignatedPartners() string

GetNumberOfDesignatedPartners returns the NumberOfDesignatedPartners field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetNumberOfDesignatedPartnersOk

func (o *ValidateResponseKycResultLlpMasterData) GetNumberOfDesignatedPartnersOk() (*string, bool)

GetNumberOfDesignatedPartnersOk returns a tuple with the NumberOfDesignatedPartners field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetNumberOfPartners

func (o *ValidateResponseKycResultLlpMasterData) GetNumberOfPartners() string

GetNumberOfPartners returns the NumberOfPartners field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetNumberOfPartnersOk

func (o *ValidateResponseKycResultLlpMasterData) GetNumberOfPartnersOk() (*string, bool)

GetNumberOfPartnersOk returns a tuple with the NumberOfPartners field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetPreviousFircompanyDetailifApplicable

func (o *ValidateResponseKycResultLlpMasterData) GetPreviousFircompanyDetailifApplicable() string

GetPreviousFircompanyDetailifApplicable returns the PreviousFircompanyDetailifApplicable field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetPreviousFircompanyDetailifApplicableOk

func (o *ValidateResponseKycResultLlpMasterData) GetPreviousFircompanyDetailifApplicableOk() (*string, bool)

GetPreviousFircompanyDetailifApplicableOk returns a tuple with the PreviousFircompanyDetailifApplicable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetRegisteredAddress

func (o *ValidateResponseKycResultLlpMasterData) GetRegisteredAddress() string

GetRegisteredAddress returns the RegisteredAddress field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetRegisteredAddressOk

func (o *ValidateResponseKycResultLlpMasterData) GetRegisteredAddressOk() (*string, bool)

GetRegisteredAddressOk returns a tuple with the RegisteredAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetRocCode

GetRocCode returns the RocCode field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetRocCodeOk

func (o *ValidateResponseKycResultLlpMasterData) GetRocCodeOk() (*string, bool)

GetRocCodeOk returns a tuple with the RocCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) GetTotalObligationOfContribution

func (o *ValidateResponseKycResultLlpMasterData) GetTotalObligationOfContribution() string

GetTotalObligationOfContribution returns the TotalObligationOfContribution field value if set, zero value otherwise.

func (*ValidateResponseKycResultLlpMasterData) GetTotalObligationOfContributionOk

func (o *ValidateResponseKycResultLlpMasterData) GetTotalObligationOfContributionOk() (*string, bool)

GetTotalObligationOfContributionOk returns a tuple with the TotalObligationOfContribution field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultLlpMasterData) HasDateOfIncorporation

func (o *ValidateResponseKycResultLlpMasterData) HasDateOfIncorporation() bool

HasDateOfIncorporation returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasDateOfLastFinancialYearEndDateForWhichAnnualReturnFiled

func (o *ValidateResponseKycResultLlpMasterData) HasDateOfLastFinancialYearEndDateForWhichAnnualReturnFiled() bool

HasDateOfLastFinancialYearEndDateForWhichAnnualReturnFiled returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasDateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled

func (o *ValidateResponseKycResultLlpMasterData) HasDateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled() bool

HasDateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasDescriptionOfMainDivision

func (o *ValidateResponseKycResultLlpMasterData) HasDescriptionOfMainDivision() bool

HasDescriptionOfMainDivision returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasEmailId

HasEmailId returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasLlpName

HasLlpName returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasLlpStatus

func (o *ValidateResponseKycResultLlpMasterData) HasLlpStatus() bool

HasLlpStatus returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasLlpin

HasLlpin returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasMainDivisionOfBusinessActivityToBeCarriedOutInIndia

func (o *ValidateResponseKycResultLlpMasterData) HasMainDivisionOfBusinessActivityToBeCarriedOutInIndia() bool

HasMainDivisionOfBusinessActivityToBeCarriedOutInIndia returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasNumberOfDesignatedPartners

func (o *ValidateResponseKycResultLlpMasterData) HasNumberOfDesignatedPartners() bool

HasNumberOfDesignatedPartners returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasNumberOfPartners

func (o *ValidateResponseKycResultLlpMasterData) HasNumberOfPartners() bool

HasNumberOfPartners returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasPreviousFircompanyDetailifApplicable

func (o *ValidateResponseKycResultLlpMasterData) HasPreviousFircompanyDetailifApplicable() bool

HasPreviousFircompanyDetailifApplicable returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasRegisteredAddress

func (o *ValidateResponseKycResultLlpMasterData) HasRegisteredAddress() bool

HasRegisteredAddress returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasRocCode

HasRocCode returns a boolean if a field has been set.

func (*ValidateResponseKycResultLlpMasterData) HasTotalObligationOfContribution

func (o *ValidateResponseKycResultLlpMasterData) HasTotalObligationOfContribution() bool

HasTotalObligationOfContribution returns a boolean if a field has been set.

func (ValidateResponseKycResultLlpMasterData) MarshalJSON

func (o ValidateResponseKycResultLlpMasterData) MarshalJSON() ([]byte, error)

func (*ValidateResponseKycResultLlpMasterData) SetDateOfIncorporation

func (o *ValidateResponseKycResultLlpMasterData) SetDateOfIncorporation(v string)

SetDateOfIncorporation gets a reference to the given string and assigns it to the DateOfIncorporation field.

func (*ValidateResponseKycResultLlpMasterData) SetDateOfLastFinancialYearEndDateForWhichAnnualReturnFiled

func (o *ValidateResponseKycResultLlpMasterData) SetDateOfLastFinancialYearEndDateForWhichAnnualReturnFiled(v string)

SetDateOfLastFinancialYearEndDateForWhichAnnualReturnFiled gets a reference to the given string and assigns it to the DateOfLastFinancialYearEndDateForWhichAnnualReturnFiled field.

func (*ValidateResponseKycResultLlpMasterData) SetDateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled

func (o *ValidateResponseKycResultLlpMasterData) SetDateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled(v string)

SetDateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled gets a reference to the given string and assigns it to the DateOfLastFinancialYearEndDateForWhichStatementOfAccountsAndSolvencyFiled field.

func (*ValidateResponseKycResultLlpMasterData) SetDescriptionOfMainDivision

func (o *ValidateResponseKycResultLlpMasterData) SetDescriptionOfMainDivision(v string)

SetDescriptionOfMainDivision gets a reference to the given string and assigns it to the DescriptionOfMainDivision field.

func (*ValidateResponseKycResultLlpMasterData) SetEmailId

SetEmailId gets a reference to the given string and assigns it to the EmailId field.

func (*ValidateResponseKycResultLlpMasterData) SetLlpName

SetLlpName gets a reference to the given string and assigns it to the LlpName field.

func (*ValidateResponseKycResultLlpMasterData) SetLlpStatus

SetLlpStatus gets a reference to the given string and assigns it to the LlpStatus field.

func (*ValidateResponseKycResultLlpMasterData) SetLlpin

SetLlpin gets a reference to the given string and assigns it to the Llpin field.

func (*ValidateResponseKycResultLlpMasterData) SetMainDivisionOfBusinessActivityToBeCarriedOutInIndia

func (o *ValidateResponseKycResultLlpMasterData) SetMainDivisionOfBusinessActivityToBeCarriedOutInIndia(v string)

SetMainDivisionOfBusinessActivityToBeCarriedOutInIndia gets a reference to the given string and assigns it to the MainDivisionOfBusinessActivityToBeCarriedOutInIndia field.

func (*ValidateResponseKycResultLlpMasterData) SetNumberOfDesignatedPartners

func (o *ValidateResponseKycResultLlpMasterData) SetNumberOfDesignatedPartners(v string)

SetNumberOfDesignatedPartners gets a reference to the given string and assigns it to the NumberOfDesignatedPartners field.

func (*ValidateResponseKycResultLlpMasterData) SetNumberOfPartners

func (o *ValidateResponseKycResultLlpMasterData) SetNumberOfPartners(v string)

SetNumberOfPartners gets a reference to the given string and assigns it to the NumberOfPartners field.

func (*ValidateResponseKycResultLlpMasterData) SetPreviousFircompanyDetailifApplicable

func (o *ValidateResponseKycResultLlpMasterData) SetPreviousFircompanyDetailifApplicable(v string)

SetPreviousFircompanyDetailifApplicable gets a reference to the given string and assigns it to the PreviousFircompanyDetailifApplicable field.

func (*ValidateResponseKycResultLlpMasterData) SetRegisteredAddress

func (o *ValidateResponseKycResultLlpMasterData) SetRegisteredAddress(v string)

SetRegisteredAddress gets a reference to the given string and assigns it to the RegisteredAddress field.

func (*ValidateResponseKycResultLlpMasterData) SetRocCode

SetRocCode gets a reference to the given string and assigns it to the RocCode field.

func (*ValidateResponseKycResultLlpMasterData) SetTotalObligationOfContribution

func (o *ValidateResponseKycResultLlpMasterData) SetTotalObligationOfContribution(v string)

SetTotalObligationOfContribution gets a reference to the given string and assigns it to the TotalObligationOfContribution field.

type ValidateResponseKycResultPollingBoothDetails

type ValidateResponseKycResultPollingBoothDetails struct {
	LatLong        *string `json:"latLong,omitempty"`
	Name           *string `json:"name,omitempty"`
	NameVernacular *string `json:"nameVernacular,omitempty"`
	Number         *string `json:"number,omitempty"`
}

ValidateResponseKycResultPollingBoothDetails struct for ValidateResponseKycResultPollingBoothDetails

func NewValidateResponseKycResultPollingBoothDetails

func NewValidateResponseKycResultPollingBoothDetails() *ValidateResponseKycResultPollingBoothDetails

NewValidateResponseKycResultPollingBoothDetails instantiates a new ValidateResponseKycResultPollingBoothDetails object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultPollingBoothDetailsWithDefaults

func NewValidateResponseKycResultPollingBoothDetailsWithDefaults() *ValidateResponseKycResultPollingBoothDetails

NewValidateResponseKycResultPollingBoothDetailsWithDefaults instantiates a new ValidateResponseKycResultPollingBoothDetails object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultPollingBoothDetails) GetLatLong

GetLatLong returns the LatLong field value if set, zero value otherwise.

func (*ValidateResponseKycResultPollingBoothDetails) GetLatLongOk

GetLatLongOk returns a tuple with the LatLong field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultPollingBoothDetails) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*ValidateResponseKycResultPollingBoothDetails) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultPollingBoothDetails) GetNameVernacular

GetNameVernacular returns the NameVernacular field value if set, zero value otherwise.

func (*ValidateResponseKycResultPollingBoothDetails) GetNameVernacularOk

func (o *ValidateResponseKycResultPollingBoothDetails) GetNameVernacularOk() (*string, bool)

GetNameVernacularOk returns a tuple with the NameVernacular field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultPollingBoothDetails) GetNumber

GetNumber returns the Number field value if set, zero value otherwise.

func (*ValidateResponseKycResultPollingBoothDetails) GetNumberOk

GetNumberOk returns a tuple with the Number field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultPollingBoothDetails) HasLatLong

HasLatLong returns a boolean if a field has been set.

func (*ValidateResponseKycResultPollingBoothDetails) HasName

HasName returns a boolean if a field has been set.

func (*ValidateResponseKycResultPollingBoothDetails) HasNameVernacular

func (o *ValidateResponseKycResultPollingBoothDetails) HasNameVernacular() bool

HasNameVernacular returns a boolean if a field has been set.

func (*ValidateResponseKycResultPollingBoothDetails) HasNumber

HasNumber returns a boolean if a field has been set.

func (ValidateResponseKycResultPollingBoothDetails) MarshalJSON

func (*ValidateResponseKycResultPollingBoothDetails) SetLatLong

SetLatLong gets a reference to the given string and assigns it to the LatLong field.

func (*ValidateResponseKycResultPollingBoothDetails) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*ValidateResponseKycResultPollingBoothDetails) SetNameVernacular

func (o *ValidateResponseKycResultPollingBoothDetails) SetNameVernacular(v string)

SetNameVernacular gets a reference to the given string and assigns it to the NameVernacular field.

func (*ValidateResponseKycResultPollingBoothDetails) SetNumber

SetNumber gets a reference to the given string and assigns it to the Number field.

type ValidateResponseKycResultPremissesAddress

type ValidateResponseKycResultPremissesAddress struct {
	District *string `json:"district,omitempty"`
	Address  *string `json:"address,omitempty"`
	State    *string `json:"state,omitempty"`
	Pincode  *string `json:"pincode,omitempty"`
}

ValidateResponseKycResultPremissesAddress struct for ValidateResponseKycResultPremissesAddress

func NewValidateResponseKycResultPremissesAddress

func NewValidateResponseKycResultPremissesAddress() *ValidateResponseKycResultPremissesAddress

NewValidateResponseKycResultPremissesAddress instantiates a new ValidateResponseKycResultPremissesAddress object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultPremissesAddressWithDefaults

func NewValidateResponseKycResultPremissesAddressWithDefaults() *ValidateResponseKycResultPremissesAddress

NewValidateResponseKycResultPremissesAddressWithDefaults instantiates a new ValidateResponseKycResultPremissesAddress object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultPremissesAddress) GetAddress

GetAddress returns the Address field value if set, zero value otherwise.

func (*ValidateResponseKycResultPremissesAddress) GetAddressOk

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultPremissesAddress) GetDistrict

GetDistrict returns the District field value if set, zero value otherwise.

func (*ValidateResponseKycResultPremissesAddress) GetDistrictOk

func (o *ValidateResponseKycResultPremissesAddress) GetDistrictOk() (*string, bool)

GetDistrictOk returns a tuple with the District field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultPremissesAddress) GetPincode

GetPincode returns the Pincode field value if set, zero value otherwise.

func (*ValidateResponseKycResultPremissesAddress) GetPincodeOk

GetPincodeOk returns a tuple with the Pincode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultPremissesAddress) GetState

GetState returns the State field value if set, zero value otherwise.

func (*ValidateResponseKycResultPremissesAddress) GetStateOk

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultPremissesAddress) HasAddress

HasAddress returns a boolean if a field has been set.

func (*ValidateResponseKycResultPremissesAddress) HasDistrict

HasDistrict returns a boolean if a field has been set.

func (*ValidateResponseKycResultPremissesAddress) HasPincode

HasPincode returns a boolean if a field has been set.

func (*ValidateResponseKycResultPremissesAddress) HasState

HasState returns a boolean if a field has been set.

func (ValidateResponseKycResultPremissesAddress) MarshalJSON

func (*ValidateResponseKycResultPremissesAddress) SetAddress

SetAddress gets a reference to the given string and assigns it to the Address field.

func (*ValidateResponseKycResultPremissesAddress) SetDistrict

SetDistrict gets a reference to the given string and assigns it to the District field.

func (*ValidateResponseKycResultPremissesAddress) SetPincode

SetPincode gets a reference to the given string and assigns it to the Pincode field.

func (*ValidateResponseKycResultPremissesAddress) SetState

SetState gets a reference to the given string and assigns it to the State field.

type ValidateResponseKycResultPrimaryBusinessContact

type ValidateResponseKycResultPrimaryBusinessContact struct {
	Email                     *string                                                      `json:"email,omitempty"`
	Address                   *string                                                      `json:"address,omitempty"`
	MobileNumber              *ValidateResponseKycResultPrimaryBusinessContactMobileNumber `json:"mobileNumber,omitempty"`
	NatureOfBusinessAtAddress *string                                                      `json:"natureOfBusinessAtAddress,omitempty"`
	LastUpdatedDate           *string                                                      `json:"lastUpdatedDate,omitempty"`
}

ValidateResponseKycResultPrimaryBusinessContact struct for ValidateResponseKycResultPrimaryBusinessContact

func NewValidateResponseKycResultPrimaryBusinessContact

func NewValidateResponseKycResultPrimaryBusinessContact() *ValidateResponseKycResultPrimaryBusinessContact

NewValidateResponseKycResultPrimaryBusinessContact instantiates a new ValidateResponseKycResultPrimaryBusinessContact object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultPrimaryBusinessContactWithDefaults

func NewValidateResponseKycResultPrimaryBusinessContactWithDefaults() *ValidateResponseKycResultPrimaryBusinessContact

NewValidateResponseKycResultPrimaryBusinessContactWithDefaults instantiates a new ValidateResponseKycResultPrimaryBusinessContact object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultPrimaryBusinessContact) GetAddress

GetAddress returns the Address field value if set, zero value otherwise.

func (*ValidateResponseKycResultPrimaryBusinessContact) GetAddressOk

GetAddressOk returns a tuple with the Address field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultPrimaryBusinessContact) GetEmail

GetEmail returns the Email field value if set, zero value otherwise.

func (*ValidateResponseKycResultPrimaryBusinessContact) GetEmailOk

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultPrimaryBusinessContact) GetLastUpdatedDate

GetLastUpdatedDate returns the LastUpdatedDate field value if set, zero value otherwise.

func (*ValidateResponseKycResultPrimaryBusinessContact) GetLastUpdatedDateOk

func (o *ValidateResponseKycResultPrimaryBusinessContact) GetLastUpdatedDateOk() (*string, bool)

GetLastUpdatedDateOk returns a tuple with the LastUpdatedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultPrimaryBusinessContact) GetMobileNumber

GetMobileNumber returns the MobileNumber field value if set, zero value otherwise.

func (*ValidateResponseKycResultPrimaryBusinessContact) GetMobileNumberOk

GetMobileNumberOk returns a tuple with the MobileNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultPrimaryBusinessContact) GetNatureOfBusinessAtAddress

func (o *ValidateResponseKycResultPrimaryBusinessContact) GetNatureOfBusinessAtAddress() string

GetNatureOfBusinessAtAddress returns the NatureOfBusinessAtAddress field value if set, zero value otherwise.

func (*ValidateResponseKycResultPrimaryBusinessContact) GetNatureOfBusinessAtAddressOk

func (o *ValidateResponseKycResultPrimaryBusinessContact) GetNatureOfBusinessAtAddressOk() (*string, bool)

GetNatureOfBusinessAtAddressOk returns a tuple with the NatureOfBusinessAtAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultPrimaryBusinessContact) HasAddress

HasAddress returns a boolean if a field has been set.

func (*ValidateResponseKycResultPrimaryBusinessContact) HasEmail

HasEmail returns a boolean if a field has been set.

func (*ValidateResponseKycResultPrimaryBusinessContact) HasLastUpdatedDate

func (o *ValidateResponseKycResultPrimaryBusinessContact) HasLastUpdatedDate() bool

HasLastUpdatedDate returns a boolean if a field has been set.

func (*ValidateResponseKycResultPrimaryBusinessContact) HasMobileNumber

HasMobileNumber returns a boolean if a field has been set.

func (*ValidateResponseKycResultPrimaryBusinessContact) HasNatureOfBusinessAtAddress

func (o *ValidateResponseKycResultPrimaryBusinessContact) HasNatureOfBusinessAtAddress() bool

HasNatureOfBusinessAtAddress returns a boolean if a field has been set.

func (ValidateResponseKycResultPrimaryBusinessContact) MarshalJSON

func (*ValidateResponseKycResultPrimaryBusinessContact) SetAddress

SetAddress gets a reference to the given string and assigns it to the Address field.

func (*ValidateResponseKycResultPrimaryBusinessContact) SetEmail

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*ValidateResponseKycResultPrimaryBusinessContact) SetLastUpdatedDate

SetLastUpdatedDate gets a reference to the given string and assigns it to the LastUpdatedDate field.

func (*ValidateResponseKycResultPrimaryBusinessContact) SetMobileNumber

SetMobileNumber gets a reference to the given ValidateResponseKycResultPrimaryBusinessContactMobileNumber and assigns it to the MobileNumber field.

func (*ValidateResponseKycResultPrimaryBusinessContact) SetNatureOfBusinessAtAddress

func (o *ValidateResponseKycResultPrimaryBusinessContact) SetNatureOfBusinessAtAddress(v string)

SetNatureOfBusinessAtAddress gets a reference to the given string and assigns it to the NatureOfBusinessAtAddress field.

type ValidateResponseKycResultPrimaryBusinessContactMobileNumber

type ValidateResponseKycResultPrimaryBusinessContactMobileNumber struct {
	Float32 *float32
	String  *string
}

ValidateResponseKycResultPrimaryBusinessContactMobileNumber - struct for ValidateResponseKycResultPrimaryBusinessContactMobileNumber

func Float32AsValidateResponseKycResultPrimaryBusinessContactMobileNumber

func Float32AsValidateResponseKycResultPrimaryBusinessContactMobileNumber(v *float32) ValidateResponseKycResultPrimaryBusinessContactMobileNumber

float32AsValidateResponseKycResultPrimaryBusinessContactMobileNumber is a convenience function that returns float32 wrapped in ValidateResponseKycResultPrimaryBusinessContactMobileNumber

func StringAsValidateResponseKycResultPrimaryBusinessContactMobileNumber

func StringAsValidateResponseKycResultPrimaryBusinessContactMobileNumber(v *string) ValidateResponseKycResultPrimaryBusinessContactMobileNumber

stringAsValidateResponseKycResultPrimaryBusinessContactMobileNumber is a convenience function that returns string wrapped in ValidateResponseKycResultPrimaryBusinessContactMobileNumber

func (*ValidateResponseKycResultPrimaryBusinessContactMobileNumber) GetActualInstance

func (obj *ValidateResponseKycResultPrimaryBusinessContactMobileNumber) GetActualInstance() interface{}

Get the actual instance

func (ValidateResponseKycResultPrimaryBusinessContactMobileNumber) MarshalJSON

Marshal data from the first non-nil pointers in the struct to JSON

func (*ValidateResponseKycResultPrimaryBusinessContactMobileNumber) UnmarshalJSON

Unmarshal JSON data into one of the pointers in the struct

type ValidateResponseKycResultProductsInner

type ValidateResponseKycResultProductsInner struct {
	SlNo                *string `json:"slNo,omitempty"`
	FoodProductCategory *string `json:"foodProductCategory,omitempty"`
}

ValidateResponseKycResultProductsInner struct for ValidateResponseKycResultProductsInner

func NewValidateResponseKycResultProductsInner

func NewValidateResponseKycResultProductsInner() *ValidateResponseKycResultProductsInner

NewValidateResponseKycResultProductsInner instantiates a new ValidateResponseKycResultProductsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidateResponseKycResultProductsInnerWithDefaults

func NewValidateResponseKycResultProductsInnerWithDefaults() *ValidateResponseKycResultProductsInner

NewValidateResponseKycResultProductsInnerWithDefaults instantiates a new ValidateResponseKycResultProductsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidateResponseKycResultProductsInner) GetFoodProductCategory

func (o *ValidateResponseKycResultProductsInner) GetFoodProductCategory() string

GetFoodProductCategory returns the FoodProductCategory field value if set, zero value otherwise.

func (*ValidateResponseKycResultProductsInner) GetFoodProductCategoryOk

func (o *ValidateResponseKycResultProductsInner) GetFoodProductCategoryOk() (*string, bool)

GetFoodProductCategoryOk returns a tuple with the FoodProductCategory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultProductsInner) GetSlNo

GetSlNo returns the SlNo field value if set, zero value otherwise.

func (*ValidateResponseKycResultProductsInner) GetSlNoOk

GetSlNoOk returns a tuple with the SlNo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidateResponseKycResultProductsInner) HasFoodProductCategory

func (o *ValidateResponseKycResultProductsInner) HasFoodProductCategory() bool

HasFoodProductCategory returns a boolean if a field has been set.

func (*ValidateResponseKycResultProductsInner) HasSlNo

HasSlNo returns a boolean if a field has been set.

func (ValidateResponseKycResultProductsInner) MarshalJSON

func (o ValidateResponseKycResultProductsInner) MarshalJSON() ([]byte, error)

func (*ValidateResponseKycResultProductsInner) SetFoodProductCategory

func (o *ValidateResponseKycResultProductsInner) SetFoodProductCategory(v string)

SetFoodProductCategory gets a reference to the given string and assigns it to the FoodProductCategory field.

func (*ValidateResponseKycResultProductsInner) SetSlNo

SetSlNo gets a reference to the given string and assigns it to the SlNo field.

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL