/**
 * Invalid parameters properties.
 */
export type InvalidParam = {
    /**
     * Gets and sets the name for the invalid parameter.
     */
    name?: string | null;
    /**
     * Gets and sets the reason for the invalid parameter.
     */
    reason?: string | null;
};
