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

com.qdesrame.openapi.diff.model.Endpoint Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.qdesrame.openapi.diff.model;


import io.swagger.v3.oas.models.Operation;
import io.swagger.v3.oas.models.PathItem;
import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class Endpoint {

    private String pathUrl;
    private PathItem.HttpMethod method;
    private String summary;

    private PathItem path;
    private Operation operation;

	@Override
    public String toString() {
        return method + " " + pathUrl;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy