Interface for the CustomResponse

interface CustomResponse {
    customResponse?: {
        customResponseBodyKey?: string;
        responseCode: number;
        responseHeaders?: {
            name: string;
            value: string;
        }[];
    };
}

Properties

Properties

customResponse?: {
    customResponseBodyKey?: string;
    responseCode: number;
    responseHeaders?: {
        name: string;
        value: string;
    }[];
}

Type declaration

  • OptionalcustomResponseBodyKey?: string

    @TJS-pattern ^[\w-]+$

  • responseCode: number
  • OptionalresponseHeaders?: {
        name: string;
        value: string;
    }[]