From 603f4795e9290f22419205447fbbc56a0364ed7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9B=D0=BE=D0=BA=D0=BE=D1=82=D0=BE=D0=BA?= <47851014+lokot0k@users.noreply.github.com> Date: Mon, 20 Mar 2023 12:45:56 +0300 Subject: [PATCH] Proper url for request object in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6e411dd78..b43d67a47 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ _Manage all of your organization's APIs in Postman, with the industry's most com # postman-code-generators [![Build Status](https://travis-ci.com/postmanlabs/postman-code-generators.svg?branch=master)](https://travis-ci.com/postmanlabs/postman-code-generators) -This module converts a [Postman SDK](https://github.com/postmanlabs/postman-collection) Request Object into a code snippet of chosen language. +This module converts a [Postman SDK](https://github.com/postmanlabs/postman-collection) Request [Object](https://www.postmanlabs.com/postman-collection/Request.html) into a code snippet of chosen language. Every code generator has two identifiers: `language` and `variant`. * `language` of a code generator is the programming language in which the code snippet is generated. @@ -170,7 +170,7 @@ var codegen = require('postman-code-generators'), // require postman-code-genera This function takes in five parameters and returns a callback with error and generated code snippet * `language` - lang key from the language list returned from getLanguageList function * `variant` - variant key provided by getLanguageList function -* `request` - [Postman-SDK](https://github.com/postmanlabs/postman-collection) Request Object +* `request` - [Postman-SDK](https://github.com/postmanlabs/postman-collection) Request [Object](https://www.postmanlabs.com/postman-collection/Request.html) * `options` - Options that can be used to configure generated code snippet. Defaults will be used for the unspecified attributes * `callback` - callback function with first parameter as error and second parameter as string for code snippet