-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from docusign/1.2.2-v1-22.3.01.00
Version 1.2.2 release
- Loading branch information
Showing
31 changed files
with
5,598 additions
and
2,067 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
using System.IO; | ||
/* | ||
* DocuSign Click API | ||
* | ||
* DocuSign Click lets you capture consent to standard agreement terms with a single click: terms and conditions, terms of service, terms of use, privacy policies, and more. The Click API lets you include this customizable clickwrap solution in your DocuSign integrations. | ||
* | ||
* OpenAPI spec version: v1 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/swagger-api/swagger-codegen.git | ||
*/ | ||
|
||
using System.IO; | ||
using System.Text.RegularExpressions; | ||
using System.Collections; | ||
using System.Collections.ObjectModel; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
using Newtonsoft.Json.Converters; | ||
using System.ComponentModel.DataAnnotations; | ||
using RestSharp; | ||
using System.Text; | ||
using System.Collections.Generic; | ||
using System; | ||
|
@@ -41,20 +50,20 @@ public class OAuth | |
// JWT Grant Type | ||
public const string Grant_Type_JWT = "urn:ietf:params:oauth:grant-type:jwt-bearer"; | ||
|
||
// /** | ||
// * | ||
// * UserInfo model with the following properties: | ||
// * <br><b>sub</b>: the user ID GUID. | ||
// * <br><b>accounts</b>: this is list of DocuSign accounts associated with the current user. | ||
// * <br><b>name</b>: the user's full name. | ||
// * <br><b>givenName</b>: the user's given name. | ||
// * <br><b>familyName</b>: the user's family name. | ||
// * <br><b>email</b>: the user's email address. | ||
// * <br><b>created</b>: the UTC DateTime when the user login was created. | ||
// * | ||
// * @see Account | ||
// * | ||
// */ | ||
/** | ||
* | ||
* UserInfo model with the following properties: | ||
* <br /><b>sub</b>: the user ID GUID. | ||
* <br /><b>accounts</b>: this is list of DocuSign accounts associated with the current user. | ||
* <br /><b>name</b>: the user's full name. | ||
* <br /><b>givenName</b>: the user's given name. | ||
* <br /><b>familyName</b>: the user's family name. | ||
* <br /><b>email</b>: the user's email address. | ||
* <br /><b>created</b>: the UTC DateTime when the user login was created. | ||
* | ||
* @see Account | ||
* | ||
*/ | ||
[DataContract] | ||
public class UserInfo : IEquatable<UserInfo>, IValidatableObject | ||
{ | ||
|
@@ -624,4 +633,4 @@ public class OAuthToken | |
public int? expires_in { get; set; } | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.