在 wordnik 的petstore 示例中,他们为响应类提供了文档。在 /pet/{petId} 端点上可以看到一个示例:
Pet {
name (string, optional),
id (integer, optional): foo,
category (Category, optional),
photoUrls (array[string], optional),
tags (array[Tag], optional),
status (string, optional) = ['available' or 'pending' or 'sold']: pet status in the store
}
看起来它支持以下参数:
- 可选(指定属性是否始终在响应中的标志)
- 允许值
- 描述
有没有办法通过 ServiceStack 实现来实现这一点?