PathItem

@Serializable
data class PathItem(val summary: String? = null, val description: String? = null, val get: Operation? = null, val post: Operation? = null, val put: Operation? = null, val delete: Operation? = null, val patch: Operation? = null)

パスアイテム 特定のパスに対する操作を定義する

Constructors

Link copied to clipboard
constructor(summary: String? = null, description: String? = null, get: Operation? = null, post: Operation? = null, put: Operation? = null, delete: Operation? = null, patch: Operation? = null)

Properties

Link copied to clipboard

DELETEオペレーション

Link copied to clipboard

パスの説明

Link copied to clipboard

GETオペレーション

Link copied to clipboard

PATCHオペレーション

Link copied to clipboard

POSTオペレーション

Link copied to clipboard

PUTオペレーション

Link copied to clipboard

パスの概要