card-management-sdk
Version:
The Shell Card Management API is REST-based and employs OAUTH 2.0,Basic and ApiKey authentication. The API endpoints accept JSON-encoded request bodies, return JSON-encoded responses and use standard HTTP response codes. All resources are located in the S
39 lines (38 loc) • 1.13 kB
TypeScript
/**
* Shell Card Management APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
export interface UpdateMPayRegStatusRequestMPayRequestsItems {
/**
* List of MPay Request to be updated for Fleet Manager approval status.
* Mandatory
* Maximum number of requests that can be submitted are 50
*/
globalRequestID?: string;
/**
* Status of mobile payment registration request
* Mandatory.
* Allowed values –
* • Approved
* • Rejected
*/
status?: string;
/**
* Approver’s User ID
* ApproverUserID is mandatory when Status is Approved else optional
*/
approverUserID?: string;
/**
* Approver’s display name
* Mandatory when Status is Approved else optional.
*/
approverUserDisplayName?: string;
/**
* Reason for Fleet Manager approval/rejection.
* Optional
*/
reason?: string;
}
export declare const updateMPayRegStatusRequestMPayRequestsItemsSchema: Schema<UpdateMPayRegStatusRequestMPayRequestsItems>;