All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arextest.model.mock.MergeRecordDTO Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.arextest.model.mock;

import java.util.Map;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * @author wildeslam.
 * @create 2023/12/18 20:03
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
public class MergeRecordDTO {
    private String response;
    private String responseType;
    private String category;
    private int methodSignatureHash;
    private int methodRequestTypeHash;
    private String operationName;
    private String request;
    private String serializeType;
    private String recordId;
    private Boolean useMock;
    private Map requestAttributes;
    private Map responseAttributes;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy