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
35 lines (34 loc) • 1.67 kB
TypeScript
/**
* Shell Card Management APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { ErrorStatus } from './errorStatus';
import { UpdateCardGroupResponseMoveCardReferencesItems } from './updateCardGroupResponseMoveCardReferencesItems';
export interface UpdateCardGroupResponse {
/**
* Reference number for tracking the overall request.
* The value will be null when the validation fails.
*/
mainReference?: number;
/**
* Reference number for tracking the execution of terminate card-group request.
* Reference number will be null when the validations fail or TerminateCardGroup in the request object is false.
*/
updateCardGroupReference?: number;
/**
* Reference number for tracking the execution of new card group creation in the case when the cards in the terminating card-group have to be moved to a new card-group.
* Reference number will be null when the validations fail or new card-group creation is not requested.
*/
newCardGroupReference?: number;
/**
* List of cards submitted successfully for processing the move to the target card-group or to change card-group to null.
* This list will be empty when the validations fail or there are no cards in the card-group that is getting terminated or MoveCards in the request object is false
*/
moveCardReferences?: UpdateCardGroupResponseMoveCardReferencesItems[];
error?: ErrorStatus;
/** API Request ID */
requestId?: string;
}
export declare const updateCardGroupResponseSchema: Schema<UpdateCardGroupResponse>;