UNPKG

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

63 lines (59 loc) 2.27 kB
/** * Shell Card Management APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { array, lazy, number, object, optional, Schema, string, } from '../schema'; import { ErrorStatus, errorStatusSchema } from './errorStatus'; import { UpdateCardGroupResponseMoveCardReferencesItems, updateCardGroupResponseMoveCardReferencesItemsSchema, } 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 const updateCardGroupResponseSchema: Schema<UpdateCardGroupResponse> = object( { mainReference: ['MainReference', optional(number())], updateCardGroupReference: ['UpdateCardGroupReference', optional(number())], newCardGroupReference: ['NewCardGroupReference', optional(number())], moveCardReferences: [ 'MoveCardReferences', optional( array(lazy(() => updateCardGroupResponseMoveCardReferencesItemsSchema)) ), ], error: ['Error', optional(lazy(() => errorStatusSchema))], requestId: ['RequestId', optional(string())], } );