data-and-reporting-sdk
Version:
Data And Reporting product consists of API's which provides details of transaction and invoice informations about shell cards. The Shell Card Transaction and Invoice API is REST-based and employs Basic authentication in Version 1 and Oauth authentication
34 lines (33 loc) • 1.47 kB
TypeScript
/**
* Shell Data & Reporting APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
/** This entity models the data that is sent in the http request body for Logged In User operation. This class inherits RequestBase class. */
export interface LoggedInUserRequest {
/** True/False. The output will include the payer group information only when true is passed. */
includePayerGroup?: boolean;
/** True/False. The output will include the EID (Electronic Invoice data) information only when true is passed.. */
includeEIDDetails?: boolean;
/**
* Name of the API on which user access needs to be validated
* Optional.
*/
requestedAPIName?: string | null;
/**
* Payer id of the customer.</br>
* Optional.</br>
* This input is a search criterion.</br>
* Note: If PayerId or PayerNumber is provided in the input, the given payer will be available in the output if the user has access to the given payer.
*/
payerId?: number | null;
/**
* PayerNumber of the customer.</br>
* Optional</br>
* This input is a search criterion.</br>
* Note: If Payerid or PayerNumber is provided in the input, the given payer will be available in the output if the user has access to the given payer.
*/
payerNumber?: string | null;
}
export declare const loggedInUserRequestSchema: Schema<LoggedInUserRequest>;