Interface Path

Representation of the oas path.

Path

interface Path {
    delete?: Operation;
    get?: Operation;
    patch?: Operation;
    post?: Operation;
    put?: Operation;
}

Properties

delete?: Operation

Specifies the delete operation of the oas path.

get?: Operation

Specifies the get operation of the oas path.

patch?: Operation

Specifies the patch operation of the oas path.

post?: Operation

Specifies the post operation of the oas path.

put?: Operation

Specifies the put operation of the oas path.