swagger

    0熱度

    1回答

    需要關於如何在swagger上做到這一點的幫助。 @SWG\Property(property="LineItems", type="array", @SWG\Items(ref="#/definitions/LineItem")) @SWG\Definition( definition="LineItem", required={"Description","Quantit

    0熱度

    1回答

    我有一個接受請求正文中的start_time,end_time和布爾closed_all_day的api。 from flask_restplus import Namespace, fields timings = api.model('open times', { 'start_time': fields.String(required=True, description='Ti

    0熱度

    2回答

    我無法在對象定義中找到貨幣數據類型的a sample,也沒有在主題上找到a document。

    1熱度

    1回答

    我正在使用Swagger codegen生成一個SDK,我需要生成一個將枚舉作爲參數的方法。我的枚舉已經定義,現在我需要配置我的操作參數。我能確定像這樣的字符串參數: operation.Parameters.Add(new Parameter { Name = "password", In = "formData", Type = "string", R

    0熱度

    1回答

    pom.xml的版本信息工作: springfox-swagger2:2.5.0 招搖核心:1.5.10 springfox-招搖的用戶界面:2.6 0.1 springboot:1.5.3 我有swagger2和springboot項目。 沒有@Aspect的項目代碼工作得很好。代碼如下所示。 public interface TestApi { WfExecution test(Lo

    2熱度

    1回答

    我正在使用swagger包來記錄我的dropwizard資源。以下是YAML文件 swagger: resourcePackage: "com..resources" description: "<a href='http:/docsite/'>Workflow doc</a>" version: ${project.version} 我要動態更新從POM文件中的

    0熱度

    1回答

    我試圖運行THIS標準directline樣本。我在Directline網站上生成密鑰並輸入。我一直得到這個錯誤 Error initializing DirectLine client TypeError: Cannot read property 'add' of undefined at D:\bots\zupcoin test\twitter\directline_client.

    3熱度

    1回答

    我使用Swagger for dotnet core來記錄我的dotnet核心Web API。 我已閱讀文檔,告訴我需要在控制器方法上方添加 [ProducesResponseType(typeof(XXXXX),200)]以幫助確定方法的響應類型。 我有一個控制器方法,返回一個文件,我想解決如何我可以告訴swagger我返回一個文件。 public class DocumentControlle

    1熱度

    1回答

    的API在體內和查詢參數定義查詢和車身參數,我需要在招搖來定義這個象下面這樣: parameters: [ { "name": "businessCode", "in": "query", "required": true, "type": "string", }, { "name":"clientCode",

    1熱度

    1回答

    我正在使用Swagger處理OpenAPI中的模式,並且我不確定是否濫用了$ref元素。我有一個User模型和Project模型,類似於像 User: type: object properties: id: type: string format: uuid name: type: string