├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── IO.Swagger.sln ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── bin └── IO.Swagger.dll ├── build.bat ├── build.sh ├── docs ├── AgreementCancellationInfo.md ├── AgreementCcInfo.md ├── AgreementCreationInfo.md ├── AgreementCreationResponse.md ├── AgreementDocumentImageUrlsInfo.md ├── AgreementDocuments.md ├── AgreementEvent.md ├── AgreementEventList.md ├── AgreementFormFields.md ├── AgreementInfo.md ├── AgreementRejectionInfo.md ├── AgreementStateInfo.md ├── AgreementView.md ├── AgreementViewInfo.md ├── AgreementViews.md ├── AgreementsApi.md ├── BaseUriInfo.md ├── BaseUrisApi.md ├── CCParticipantInfo.md ├── ChildAgreementsInfo.md ├── CombinedDocumentPagesInfo.md ├── CommonViewConfiguration.md ├── ComposeViewConfiguration.md ├── DelegatedParticipantInfo.md ├── DelegatedParticipantSecurityOption.md ├── DelegatedParticipantSetInfo.md ├── DelegationResponse.md ├── DetailedGroupInfo.md ├── DetailedParticipantInfo.md ├── DetailedParticipantSetInfo.md ├── DetailedUserInfo.md ├── DetailedWidgetParticipantSetInfo.md ├── DeviceLocation.md ├── DigitalSignatureInfo.md ├── DisplayParticipantInfo.md ├── DisplayParticipantSetInfo.md ├── DisplayWidgetParticipantSetInfo.md ├── Document.md ├── DocumentImageUrls.md ├── DocumentImageUrlsInfo.md ├── DocumentPageInfo.md ├── DocumentUrl.md ├── Documents.md ├── DocumentsImageUrlsInfo.md ├── EmailOption.md ├── ExternalId.md ├── FileInfo.md ├── FileUploadOptions.md ├── FormField.md ├── FormFieldConditionPredicate.md ├── FormFieldConditionalAction.md ├── FormFieldHyperlink.md ├── FormFieldLocation.md ├── FormFieldMergeInfo.md ├── FormFieldPostInfo.md ├── FormFieldPutInfo.md ├── GroupInfo.md ├── GroupUserInfo.md ├── GroupUsersInfo.md ├── GroupsApi.md ├── GroupsInfo.md ├── LibDocEventDeviceLocation.md ├── LibraryDocument.md ├── LibraryDocumentCreationInfoV6.md ├── LibraryDocumentCreationResponse.md ├── LibraryDocumentEvent.md ├── LibraryDocumentEventList.md ├── LibraryDocumentInfo.md ├── LibraryDocumentStateInfo.md ├── LibraryDocumentViewResponse.md ├── LibraryDocuments.md ├── LibraryDocumentsApi.md ├── LibraryView.md ├── LibraryViewInfo.md ├── MegaSign.md ├── MegaSignCcInfo.md ├── MegaSignChildAgreement.md ├── MegaSignChildAgreements.md ├── MegaSignChildAgreementsFileInfo.md ├── MegaSignCreationInfo.md ├── MegaSignCreationResponse.md ├── MegaSignSecurityOption.md ├── MegaSignStateInfo.md ├── MegaSignView.md ├── MegaSignViewInfo.md ├── MegaSignViewResponse.md ├── MegaSigns.md ├── MegaSignsApi.md ├── MegasignEvent.md ├── MegasignEventList.md ├── MembersInfo.md ├── MergefieldInfo.md ├── Note.md ├── OfflineDeviceInfo.md ├── PageImageUrl.md ├── PageInfo.md ├── ParticipantSecurityOption.md ├── ParticipantSetInfo.md ├── ParticipantSetMemberInfo.md ├── PhoneInfo.md ├── PostSignOption.md ├── ReminderCreationResult.md ├── ReminderInfo.md ├── RemindersResponse.md ├── SecurityOption.md ├── SendOptions.md ├── SendViewConfiguration.md ├── SenderInfo.md ├── ShareCreationInfo.md ├── ShareCreationInfoList.md ├── ShareCreationResponse.md ├── ShareCreationResponseList.md ├── ShareParticipantInfo.md ├── SigningUrl.md ├── SigningUrlResponse.md ├── SigningUrlSetInfo.md ├── SupportingDocument.md ├── TransientDocumentResponse.md ├── TransientDocumentsApi.md ├── URLFileInfo.md ├── UserAgreement.md ├── UserAgreements.md ├── UserGroupInfo.md ├── UserGroupsInfo.md ├── UserInfo.md ├── UserStateInfo.md ├── UserStatusUpdateResponse.md ├── UserView.md ├── UserViewInfo.md ├── UserViewResponse.md ├── UserWebhook.md ├── UserWebhooks.md ├── UserWidget.md ├── UserWidgets.md ├── UserWorkflow.md ├── UserWorkflows.md ├── UsersApi.md ├── UsersInfo.md ├── VaultingInfo.md ├── VisibilityInfo.md ├── WebhookAgreementEvents.md ├── WebhookConditionalParams.md ├── WebhookCreationResponse.md ├── WebhookInfo.md ├── WebhookLibraryDocumentEvents.md ├── WebhookMegaSignEvents.md ├── WebhookStateInfo.md ├── WebhookUrlInfo.md ├── WebhookWidgetEvents.md ├── WebhooksApi.md ├── WidgetAdditionalParticipationSetInfo.md ├── WidgetAgreement.md ├── WidgetAgreements.md ├── WidgetCcInfo.md ├── WidgetCreationInfoV6.md ├── WidgetCreationResponse.md ├── WidgetDocuments.md ├── WidgetDocumentsImageUrlsInfo.md ├── WidgetEvent.md ├── WidgetEventDeviceLocation.md ├── WidgetEventList.md ├── WidgetInActiveInfo.md ├── WidgetInfo.md ├── WidgetMembersInfo.md ├── WidgetParticipantSetInfo.md ├── WidgetRedirectionInfo.md ├── WidgetStateInfo.md ├── WidgetView.md ├── WidgetViewInfo.md ├── WidgetViews.md ├── WidgetsApi.md └── WorkflowsApi.md ├── git_push.sh ├── mono_nunit_test.sh └── src ├── IO.Swagger.Test ├── Api │ ├── AgreementsApiTests.cs │ ├── BaseUrisApiTests.cs │ ├── GroupsApiTests.cs │ ├── LibraryDocumentsApiTests.cs │ ├── MegaSignsApiTests.cs │ ├── TransientDocumentsApiTests.cs │ ├── UsersApiTests.cs │ ├── WebhooksApiTests.cs │ ├── WidgetsApiTests.cs │ └── WorkflowsApiTests.cs ├── IO.Swagger.Test.csproj ├── model.agreements │ ├── AgreementCancellationInfoTests.cs │ ├── AgreementCcInfoTests.cs │ ├── AgreementCreationInfoTests.cs │ ├── AgreementCreationResponseTests.cs │ ├── AgreementDocumentImageUrlsInfoTests.cs │ ├── AgreementDocumentsTests.cs │ ├── AgreementEventListTests.cs │ ├── AgreementEventTests.cs │ ├── AgreementFormFieldsTests.cs │ ├── AgreementInfoTests.cs │ ├── AgreementRejectionInfoTests.cs │ ├── AgreementStateInfoTests.cs │ ├── AgreementViewInfoTests.cs │ ├── AgreementViewTests.cs │ ├── AgreementViewsTests.cs │ ├── CCParticipantInfoTests.cs │ ├── CombinedDocumentPagesInfoTests.cs │ ├── CommonViewConfigurationTests.cs │ ├── ComposeViewConfigurationTests.cs │ ├── DelegatedParticipantInfoTests.cs │ ├── DelegatedParticipantSecurityOptionTests.cs │ ├── DelegatedParticipantSetInfoTests.cs │ ├── DelegationResponseTests.cs │ ├── DetailedParticipantInfoTests.cs │ ├── DetailedParticipantSetInfoTests.cs │ ├── DeviceLocationTests.cs │ ├── DigitalSignatureInfoTests.cs │ ├── DisplayParticipantInfoTests.cs │ ├── DisplayParticipantSetInfoTests.cs │ ├── DocumentImageUrlsInfoTests.cs │ ├── DocumentImageUrlsTests.cs │ ├── DocumentPageInfoTests.cs │ ├── DocumentTests.cs │ ├── DocumentUrlTests.cs │ ├── DocumentsImageUrlsInfoTests.cs │ ├── EmailOptionTests.cs │ ├── ExternalIdTests.cs │ ├── FileInfoTests.cs │ ├── FileUploadOptionsTests.cs │ ├── FormFieldConditionPredicateTests.cs │ ├── FormFieldConditionalActionTests.cs │ ├── FormFieldHyperlinkTests.cs │ ├── FormFieldLocationTests.cs │ ├── FormFieldMergeInfoTests.cs │ ├── FormFieldPostInfoTests.cs │ ├── FormFieldPutInfoTests.cs │ ├── FormFieldTests.cs │ ├── MembersInfoTests.cs │ ├── MergefieldInfoTests.cs │ ├── NoteTests.cs │ ├── OfflineDeviceInfoTests.cs │ ├── PageImageUrlTests.cs │ ├── PageInfoTests.cs │ ├── ParticipantSecurityOptionTests.cs │ ├── ParticipantSetInfoTests.cs │ ├── ParticipantSetMemberInfoTests.cs │ ├── PhoneInfoTests.cs │ ├── PostSignOptionTests.cs │ ├── ReminderCreationResultTests.cs │ ├── ReminderInfoTests.cs │ ├── RemindersResponseTests.cs │ ├── SecurityOptionTests.cs │ ├── SendOptionsTests.cs │ ├── SenderInfoTests.cs │ ├── ShareCreationInfoListTests.cs │ ├── ShareCreationInfoTests.cs │ ├── ShareCreationResponseListTests.cs │ ├── ShareCreationResponseTests.cs │ ├── ShareParticipantInfoTests.cs │ ├── SigningUrlResponseTests.cs │ ├── SigningUrlSetInfoTests.cs │ ├── SigningUrlTests.cs │ ├── SupportingDocumentTests.cs │ ├── URLFileInfoTests.cs │ ├── UserAgreementTests.cs │ ├── UserAgreementsTests.cs │ ├── VaultingInfoTests.cs │ └── VisibilityInfoTests.cs ├── model.baseUris │ └── BaseUriInfoTests.cs ├── model.groups │ ├── DetailedGroupInfoTests.cs │ ├── GroupInfoTests.cs │ ├── GroupUserInfoTests.cs │ ├── GroupUsersInfoTests.cs │ ├── GroupsInfoTests.cs │ └── PageInfoTests.cs ├── model.libraryDocuments │ ├── CommonViewConfigurationTests.cs │ ├── DigitalSignatureInfoTests.cs │ ├── DocumentImageUrlsInfoTests.cs │ ├── DocumentImageUrlsTests.cs │ ├── DocumentTests.cs │ ├── DocumentsTests.cs │ ├── FileInfoTests.cs │ ├── FileUploadOptionsTests.cs │ ├── LibDocEventDeviceLocationTests.cs │ ├── LibraryDocumentCreationInfoV6Tests.cs │ ├── LibraryDocumentCreationResponseTests.cs │ ├── LibraryDocumentEventListTests.cs │ ├── LibraryDocumentEventTests.cs │ ├── LibraryDocumentInfoTests.cs │ ├── LibraryDocumentStateInfoTests.cs │ ├── LibraryDocumentTests.cs │ ├── LibraryDocumentViewResponseTests.cs │ ├── LibraryDocumentsTests.cs │ ├── LibraryViewInfoTests.cs │ ├── LibraryViewTests.cs │ ├── NoteTests.cs │ ├── PageImageUrlTests.cs │ ├── PageInfoTests.cs │ ├── SendViewConfigurationTests.cs │ ├── URLFileInfoTests.cs │ └── VisibilityInfoTests.cs ├── model.megaSigns │ ├── AgreementCancellationInfoTests.cs │ ├── ChildAgreementsInfoTests.cs │ ├── CommonViewConfigurationTests.cs │ ├── DeviceLocationTests.cs │ ├── DigitalSignatureInfoTests.cs │ ├── ExternalIdTests.cs │ ├── FileInfoTests.cs │ ├── MegaSignCcInfoTests.cs │ ├── MegaSignChildAgreementTests.cs │ ├── MegaSignChildAgreementsFileInfoTests.cs │ ├── MegaSignChildAgreementsTests.cs │ ├── MegaSignCreationInfoTests.cs │ ├── MegaSignCreationResponseTests.cs │ ├── MegaSignSecurityOptionTests.cs │ ├── MegaSignStateInfoTests.cs │ ├── MegaSignTests.cs │ ├── MegaSignViewInfoTests.cs │ ├── MegaSignViewResponseTests.cs │ ├── MegaSignViewTests.cs │ ├── MegaSignsTests.cs │ ├── MegasignEventListTests.cs │ ├── MegasignEventTests.cs │ ├── PageInfoTests.cs │ ├── PostSignOptionTests.cs │ ├── URLFileInfoTests.cs │ └── VaultingInfoTests.cs ├── model.transientDocuments │ └── TransientDocumentResponseTests.cs ├── model.users │ ├── CommonViewConfigurationTests.cs │ ├── DetailedUserInfoTests.cs │ ├── PageInfoTests.cs │ ├── UserGroupInfoTests.cs │ ├── UserGroupsInfoTests.cs │ ├── UserInfoTests.cs │ ├── UserStateInfoTests.cs │ ├── UserStatusUpdateResponseTests.cs │ ├── UserViewInfoTests.cs │ ├── UserViewResponseTests.cs │ ├── UserViewTests.cs │ └── UsersInfoTests.cs ├── model.webhooks │ ├── PageInfoTests.cs │ ├── UserWebhookTests.cs │ ├── UserWebhooksTests.cs │ ├── WebhookAgreementEventsTests.cs │ ├── WebhookConditionalParamsTests.cs │ ├── WebhookCreationResponseTests.cs │ ├── WebhookInfoTests.cs │ ├── WebhookLibraryDocumentEventsTests.cs │ ├── WebhookMegaSignEventsTests.cs │ ├── WebhookStateInfoTests.cs │ ├── WebhookUrlInfoTests.cs │ └── WebhookWidgetEventsTests.cs ├── model.widgets │ ├── CCParticipantInfoTests.cs │ ├── CommonViewConfigurationTests.cs │ ├── DetailedParticipantInfoTests.cs │ ├── DetailedWidgetParticipantSetInfoTests.cs │ ├── DigitalSignatureInfoTests.cs │ ├── DisplayParticipantInfoTests.cs │ ├── DisplayWidgetParticipantSetInfoTests.cs │ ├── DocumentImageUrlsInfoTests.cs │ ├── DocumentImageUrlsTests.cs │ ├── DocumentTests.cs │ ├── FileInfoTests.cs │ ├── NoteTests.cs │ ├── PageImageUrlTests.cs │ ├── PageInfoTests.cs │ ├── ParticipantSecurityOptionTests.cs │ ├── ParticipantSetMemberInfoTests.cs │ ├── PhoneInfoTests.cs │ ├── SecurityOptionTests.cs │ ├── SenderInfoTests.cs │ ├── ShareCreationInfoListTests.cs │ ├── ShareCreationInfoTests.cs │ ├── ShareCreationResponseListTests.cs │ ├── ShareCreationResponseTests.cs │ ├── ShareParticipantInfoTests.cs │ ├── URLFileInfoTests.cs │ ├── UserWidgetTests.cs │ ├── UserWidgetsTests.cs │ ├── VaultingInfoTests.cs │ ├── VisibilityInfoTests.cs │ ├── WidgetAdditionalParticipationSetInfoTests.cs │ ├── WidgetAgreementTests.cs │ ├── WidgetAgreementsTests.cs │ ├── WidgetCcInfoTests.cs │ ├── WidgetCreationInfoV6Tests.cs │ ├── WidgetCreationResponseTests.cs │ ├── WidgetDocumentsImageUrlsInfoTests.cs │ ├── WidgetDocumentsTests.cs │ ├── WidgetEventDeviceLocationTests.cs │ ├── WidgetEventListTests.cs │ ├── WidgetEventTests.cs │ ├── WidgetInActiveInfoTests.cs │ ├── WidgetInfoTests.cs │ ├── WidgetMembersInfoTests.cs │ ├── WidgetParticipantSetInfoTests.cs │ ├── WidgetRedirectionInfoTests.cs │ ├── WidgetStateInfoTests.cs │ ├── WidgetViewInfoTests.cs │ ├── WidgetViewTests.cs │ └── WidgetViewsTests.cs ├── model.workflows │ ├── UserWorkflowTests.cs │ └── UserWorkflowsTests.cs └── packages.config └── IO.Swagger ├── Api ├── AgreementsApi.cs ├── BaseUrisApi.cs ├── GroupsApi.cs ├── LibraryDocumentsApi.cs ├── MegaSignsApi.cs ├── TransientDocumentsApi.cs ├── UsersApi.cs ├── WebhooksApi.cs ├── WidgetsApi.cs └── WorkflowsApi.cs ├── Client ├── ApiClient.cs ├── ApiException.cs ├── ApiResponse.cs ├── Configuration.cs ├── ExceptionFactory.cs ├── GlobalConfiguration.cs ├── IApiAccessor.cs ├── IReadableConfiguration.cs └── SwaggerDateConverter.cs ├── IO.Swagger.csproj ├── IO.Swagger.nuspec ├── Properties └── AssemblyInfo.cs ├── model.agreements ├── AgreementCancellationInfo.cs ├── AgreementCcInfo.cs ├── AgreementCreationInfo.cs ├── AgreementCreationResponse.cs ├── AgreementDocumentImageUrlsInfo.cs ├── AgreementDocuments.cs ├── AgreementEvent.cs ├── AgreementEventList.cs ├── AgreementFormFields.cs ├── AgreementInfo.cs ├── AgreementRejectionInfo.cs ├── AgreementStateInfo.cs ├── AgreementView.cs ├── AgreementViewInfo.cs ├── AgreementViews.cs ├── CCParticipantInfo.cs ├── CombinedDocumentPagesInfo.cs ├── CommonViewConfiguration.cs ├── ComposeViewConfiguration.cs ├── DelegatedParticipantInfo.cs ├── DelegatedParticipantSecurityOption.cs ├── DelegatedParticipantSetInfo.cs ├── DelegationResponse.cs ├── DetailedParticipantInfo.cs ├── DetailedParticipantSetInfo.cs ├── DeviceLocation.cs ├── DigitalSignatureInfo.cs ├── DisplayParticipantInfo.cs ├── DisplayParticipantSetInfo.cs ├── Document.cs ├── DocumentImageUrls.cs ├── DocumentImageUrlsInfo.cs ├── DocumentPageInfo.cs ├── DocumentUrl.cs ├── DocumentsImageUrlsInfo.cs ├── EmailOption.cs ├── ExternalId.cs ├── FileInfo.cs ├── FileUploadOptions.cs ├── FormField.cs ├── FormFieldConditionPredicate.cs ├── FormFieldConditionalAction.cs ├── FormFieldHyperlink.cs ├── FormFieldLocation.cs ├── FormFieldMergeInfo.cs ├── FormFieldPostInfo.cs ├── FormFieldPutInfo.cs ├── MembersInfo.cs ├── MergefieldInfo.cs ├── Note.cs ├── OfflineDeviceInfo.cs ├── PageImageUrl.cs ├── PageInfo.cs ├── ParticipantSecurityOption.cs ├── ParticipantSetInfo.cs ├── ParticipantSetMemberInfo.cs ├── PhoneInfo.cs ├── PostSignOption.cs ├── ReminderCreationResult.cs ├── ReminderInfo.cs ├── RemindersResponse.cs ├── SecurityOption.cs ├── SendOptions.cs ├── SenderInfo.cs ├── ShareCreationInfo.cs ├── ShareCreationInfoList.cs ├── ShareCreationResponse.cs ├── ShareCreationResponseList.cs ├── ShareParticipantInfo.cs ├── SigningUrl.cs ├── SigningUrlResponse.cs ├── SigningUrlSetInfo.cs ├── SupportingDocument.cs ├── URLFileInfo.cs ├── UserAgreement.cs ├── UserAgreements.cs ├── VaultingInfo.cs └── VisibilityInfo.cs ├── model.baseUris └── BaseUriInfo.cs ├── model.groups ├── DetailedGroupInfo.cs ├── GroupInfo.cs ├── GroupUserInfo.cs ├── GroupUsersInfo.cs ├── GroupsInfo.cs └── PageInfo.cs ├── model.libraryDocuments ├── CommonViewConfiguration.cs ├── DigitalSignatureInfo.cs ├── Document.cs ├── DocumentImageUrls.cs ├── DocumentImageUrlsInfo.cs ├── Documents.cs ├── FileInfo.cs ├── FileUploadOptions.cs ├── LibDocEventDeviceLocation.cs ├── LibraryDocument.cs ├── LibraryDocumentCreationInfoV6.cs ├── LibraryDocumentCreationResponse.cs ├── LibraryDocumentEvent.cs ├── LibraryDocumentEventList.cs ├── LibraryDocumentInfo.cs ├── LibraryDocumentStateInfo.cs ├── LibraryDocumentViewResponse.cs ├── LibraryDocuments.cs ├── LibraryView.cs ├── LibraryViewInfo.cs ├── Note.cs ├── PageImageUrl.cs ├── PageInfo.cs ├── SendViewConfiguration.cs ├── URLFileInfo.cs └── VisibilityInfo.cs ├── model.megaSigns ├── AgreementCancellationInfo.cs ├── ChildAgreementsInfo.cs ├── CommonViewConfiguration.cs ├── DeviceLocation.cs ├── DigitalSignatureInfo.cs ├── ExternalId.cs ├── FileInfo.cs ├── MegaSign.cs ├── MegaSignCcInfo.cs ├── MegaSignChildAgreement.cs ├── MegaSignChildAgreements.cs ├── MegaSignChildAgreementsFileInfo.cs ├── MegaSignCreationInfo.cs ├── MegaSignCreationResponse.cs ├── MegaSignSecurityOption.cs ├── MegaSignStateInfo.cs ├── MegaSignView.cs ├── MegaSignViewInfo.cs ├── MegaSignViewResponse.cs ├── MegaSigns.cs ├── MegasignEvent.cs ├── MegasignEventList.cs ├── PageInfo.cs ├── PostSignOption.cs ├── URLFileInfo.cs └── VaultingInfo.cs ├── model.transientDocuments └── TransientDocumentResponse.cs ├── model.users ├── CommonViewConfiguration.cs ├── DetailedUserInfo.cs ├── PageInfo.cs ├── UserGroupInfo.cs ├── UserGroupsInfo.cs ├── UserInfo.cs ├── UserStateInfo.cs ├── UserStatusUpdateResponse.cs ├── UserView.cs ├── UserViewInfo.cs ├── UserViewResponse.cs └── UsersInfo.cs ├── model.webhooks ├── PageInfo.cs ├── UserWebhook.cs ├── UserWebhooks.cs ├── WebhookAgreementEvents.cs ├── WebhookConditionalParams.cs ├── WebhookCreationResponse.cs ├── WebhookInfo.cs ├── WebhookLibraryDocumentEvents.cs ├── WebhookMegaSignEvents.cs ├── WebhookStateInfo.cs ├── WebhookUrlInfo.cs └── WebhookWidgetEvents.cs ├── model.widgets ├── CCParticipantInfo.cs ├── CommonViewConfiguration.cs ├── DetailedParticipantInfo.cs ├── DetailedWidgetParticipantSetInfo.cs ├── DigitalSignatureInfo.cs ├── DisplayParticipantInfo.cs ├── DisplayWidgetParticipantSetInfo.cs ├── Document.cs ├── DocumentImageUrls.cs ├── DocumentImageUrlsInfo.cs ├── FileInfo.cs ├── Note.cs ├── PageImageUrl.cs ├── PageInfo.cs ├── ParticipantSecurityOption.cs ├── ParticipantSetMemberInfo.cs ├── PhoneInfo.cs ├── SecurityOption.cs ├── SenderInfo.cs ├── ShareCreationInfo.cs ├── ShareCreationInfoList.cs ├── ShareCreationResponse.cs ├── ShareCreationResponseList.cs ├── ShareParticipantInfo.cs ├── URLFileInfo.cs ├── UserWidget.cs ├── UserWidgets.cs ├── VaultingInfo.cs ├── VisibilityInfo.cs ├── WidgetAdditionalParticipationSetInfo.cs ├── WidgetAgreement.cs ├── WidgetAgreements.cs ├── WidgetCcInfo.cs ├── WidgetCreationInfoV6.cs ├── WidgetCreationResponse.cs ├── WidgetDocuments.cs ├── WidgetDocumentsImageUrlsInfo.cs ├── WidgetEvent.cs ├── WidgetEventDeviceLocation.cs ├── WidgetEventList.cs ├── WidgetInActiveInfo.cs ├── WidgetInfo.cs ├── WidgetMembersInfo.cs ├── WidgetParticipantSetInfo.cs ├── WidgetRedirectionInfo.cs ├── WidgetStateInfo.cs ├── WidgetView.cs ├── WidgetViewInfo.cs └── WidgetViews.cs ├── model.workflows ├── UserWorkflow.cs └── UserWorkflows.cs └── packages.config /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Thanks for choosing to contribute! 4 | 5 | The following are a set of guidelines to follow when contributing to this project. 6 | 7 | ## Code Of Conduct 8 | 9 | This project adheres to the Adobe [code of conduct](CODE_OF_CONDUCT.md). By participating, 10 | you are expected to uphold this code. Please report unacceptable behavior to 11 | [Grp-opensourceoffice@adobe.com](mailto:Grp-opensourceoffice@adobe.com). 12 | 13 | ## Have A Question? 14 | 15 | Start by filing an issue. The existing committers on this project work to reach 16 | consensus around project direction and issue solutions within issue threads 17 | (when appropriate). 18 | 19 | ## Contributor License Agreement 20 | 21 | All third-party contributions to this project must be accompanied by a signed contributor 22 | license agreement. This gives Adobe permission to redistribute your contributions 23 | as part of the project. [Sign our CLA](http://opensource.adobe.com/cla.html). You 24 | only need to submit an Adobe CLA one time, so if you have submitted one previously, 25 | you are good to go! 26 | 27 | ## Code Reviews 28 | 29 | All submissions should come in the form of pull requests and need to be reviewed 30 | by project committers. Read [GitHub's pull request documentation](https://help.github.com/articles/about-pull-requests/) 31 | for more information on sending pull requests. 32 | 33 | Lastly, please follow the [pull request template](PULL_REQUEST_TEMPLATE.md) when 34 | submitting a pull request! 35 | 36 | ## From Contributor To Committer 37 | 38 | We love contributions from our community! If you'd like to go a step beyond contributor 39 | and become a committer with full write access and a say in the project, you must 40 | be invited to the project. The existing committers employ an internal nomination 41 | process that must reach lazy consensus (silence is approval) before invitations 42 | are issued. If you feel you are qualified and want to get more deeply involved, 43 | feel free to reach out to existing committers to have a conversation about that. 44 | 45 | ## Security Issues 46 | 47 | Security issues shouldn't be reported on this issue tracker. Instead, [file an issue to our security experts](https://helpx.adobe.com/security/alertus.html) 48 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- 1 | © Copyright 2015-2019 Adobe. All rights reserved. 2 | 3 | Adobe holds the copyright for all the files found in this repository. 4 | 5 | See the LICENSE file for licensing information. 6 | -------------------------------------------------------------------------------- /IO.Swagger.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 12.00 2 | # Visual Studio 2012 3 | VisualStudioVersion = 12.0.0.0 4 | MinimumVisualStudioVersion = 10.0.0.1 5 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IO.Swagger", "src\IO.Swagger\IO.Swagger.csproj", "{237C2084-D12E-4363-B354-CFA43E6396E6}" 6 | EndProject 7 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IO.Swagger.Test", "src\IO.Swagger.Test\IO.Swagger.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}" 8 | EndProject 9 | Global 10 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 11 | Debug|Any CPU = Debug|Any CPU 12 | Release|Any CPU = Release|Any CPU 13 | EndGlobalSection 14 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 15 | {237C2084-D12E-4363-B354-CFA43E6396E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 16 | {237C2084-D12E-4363-B354-CFA43E6396E6}.Debug|Any CPU.Build.0 = Debug|Any CPU 17 | {237C2084-D12E-4363-B354-CFA43E6396E6}.Release|Any CPU.ActiveCfg = Release|Any CPU 18 | {237C2084-D12E-4363-B354-CFA43E6396E6}.Release|Any CPU.Build.0 = Release|Any CPU 19 | {19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 20 | {19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU 21 | {19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU 22 | {19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.Build.0 = Release|Any CPU 23 | EndGlobalSection 24 | GlobalSection(SolutionProperties) = preSolution 25 | HideSolutionNode = FALSE 26 | EndGlobalSection 27 | EndGlobal -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Expected Behaviour 2 | 3 | ### Actual Behaviour 4 | 5 | ### Reproduce Scenario (including but not limited to) 6 | 7 | #### Steps to Reproduce 8 | 9 | #### Platform and Version 10 | 11 | #### Sample Code that illustrates the problem 12 | 13 | #### Logs taken while reproducing problem 14 | -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Description 4 | 5 | 6 | 7 | ## Related Issue 8 | 9 | 10 | 11 | 12 | 13 | 14 | ## Motivation and Context 15 | 16 | 17 | 18 | ## How Has This Been Tested? 19 | 20 | 21 | 22 | 23 | 24 | ## Screenshots (if appropriate): 25 | 26 | ## Types of changes 27 | 28 | 29 | 30 | - [ ] Bug fix (non-breaking change which fixes an issue) 31 | - [ ] New feature (non-breaking change which adds functionality) 32 | - [ ] Breaking change (fix or feature that would cause existing functionality to change) 33 | 34 | ## Checklist: 35 | 36 | 37 | 38 | 39 | - [ ] I have signed the [Adobe Open Source CLA](http://opensource.adobe.com/cla.html). 40 | - [ ] My code follows the code style of this project. 41 | - [ ] My change requires a change to the documentation. 42 | - [ ] I have updated the documentation accordingly. 43 | - [ ] I have read the **CONTRIBUTING** document. 44 | - [ ] I have added tests to cover my changes. 45 | - [ ] All new and existing tests passed. 46 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Adobe Sign C# SDK 2 | **NOTE**: This SDK is deprecated. Please refer to https://opensource.adobe.com/acrobat-sign/sdks/. 3 | -------------------------------------------------------------------------------- /bin/IO.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe-sign/AdobeSignCSharpSDK/560affef4a21fbc1e44015cb700fdac9e02ba1b2/bin/IO.Swagger.dll -------------------------------------------------------------------------------- /build.bat: -------------------------------------------------------------------------------- 1 | :: Generated by: https://github.com/swagger-api/swagger-codegen.git 2 | :: 3 | 4 | @echo off 5 | 6 | SET CSCPATH=%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319 7 | 8 | if not exist ".\nuget.exe" powershell -Command "(new-object System.Net.WebClient).DownloadFile('https://dist.nuget.org/win-x86-commandline/latest/nuget.exe', '.\nuget.exe')" 9 | .\nuget.exe install src\IO.Swagger\packages.config -o packages 10 | 11 | if not exist ".\bin" mkdir bin 12 | 13 | copy packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll bin\Newtonsoft.Json.dll 14 | copy packages\JsonSubTypes.1.2.0\lib\net45\JsonSubTypes.dll bin\JsonSubTypes.dll 15 | copy packages\RestSharp.105.1.0\lib\net45\RestSharp.dll bin\RestSharp.dll 16 | %CSCPATH%\csc /reference:bin\Newtonsoft.Json.dll;bin\JsonSubTypes.dll;bin\RestSharp.dll;System.ComponentModel.DataAnnotations.dll /target:library /out:bin\IO.Swagger.dll /recurse:src\IO.Swagger\*.cs /doc:bin\IO.Swagger.xml 17 | 18 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # 3 | # Generated by: https://github.com/swagger-api/swagger-codegen.git 4 | # 5 | 6 | frameworkVersion=net45 7 | 8 | # sdk must match installed framworks under PREFIX/lib/mono/[value] 9 | sdk=4.5.2-api 10 | 11 | # langversion refers to C# language features. see man mcs for details. 12 | langversion=${sdk} 13 | nuget_cmd=nuget 14 | 15 | # Match against our known SDK possibilities 16 | case "${sdk}" in 17 | 4) 18 | langversion=4 19 | ;; 20 | 4.5*) 21 | langversion=5 22 | ;; 23 | 4.6*) 24 | langversion=6 25 | ;; 26 | 4.7*) 27 | langversion=7 # ignoring 7.1 for now. 28 | ;; 29 | *) 30 | langversion=6 31 | ;; 32 | esac 33 | 34 | echo "[INFO] Target framework: ${frameworkVersion}" 35 | 36 | if ! type nuget &>/dev/null; then 37 | echo "[INFO] Download nuget and packages" 38 | wget -nc https://dist.nuget.org/win-x86-commandline/latest/nuget.exe; 39 | nuget_cmd="mono nuget.exe" 40 | fi 41 | 42 | mozroots --import --sync 43 | ${nuget_cmd} install src/IO.Swagger/packages.config -o packages; 44 | 45 | echo "[INFO] Copy DLLs to the 'bin' folder" 46 | mkdir -p bin; 47 | cp packages/Newtonsoft.Json.10.0.3/lib/net45/Newtonsoft.Json.dll bin/Newtonsoft.Json.dll; 48 | cp packages/RestSharp.105.1.0/lib/net45/RestSharp.dll bin/RestSharp.dll; 49 | cp packages/JsonSubTypes.1.2.0/lib/net45/JsonSubTypes.dll bin/JsonSubTypes.dll 50 | 51 | echo "[INFO] Run 'mcs' to build bin/IO.Swagger.dll" 52 | mcs -langversion:${langversion} -sdk:${sdk} -r:bin/Newtonsoft.Json.dll,bin/JsonSubTypes.dll,\ 53 | bin/RestSharp.dll,\ 54 | System.ComponentModel.DataAnnotations.dll,\ 55 | System.Runtime.Serialization.dll \ 56 | -target:library \ 57 | -out:bin/IO.Swagger.dll \ 58 | -recurse:'src/IO.Swagger/*.cs' \ 59 | -doc:bin/IO.Swagger.xml \ 60 | -platform:anycpu 61 | 62 | if [ $? -ne 0 ] 63 | then 64 | echo "[ERROR] Compilation failed with exit code $?" 65 | exit 1 66 | else 67 | echo "[INFO] bin/IO.Swagger.dll was created successfully" 68 | fi 69 | -------------------------------------------------------------------------------- /docs/AgreementCancellationInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.AgreementCancellationInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Comment** | **string** | An optional comment describing to the recipients why you want to cancel the transaction | [optional] 7 | **NotifyOthers** | **bool?** | Whether or not you would like the recipients to be notified that the transaction has been cancelled. The default value is false | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/AgreementCcInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.AgreementCcInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Email** | **string** | Email of the CC participant of the agreement | [optional] 7 | **Label** | **string** | Label of the CC list as returned in workflow description | [optional] 8 | **VisiblePages** | **List<string>** | When you enable limited document visibility (documentVisibilityEnabled), you can specify which file (fileInfo) should be made visible to which specific participant set.<br>Specify one or more label values of a fileInfos element.<br>Each signer participant sets must contain at least one required signature field in at least one visible file included in this API call; if not a page with a signature field is automatically appended for any missing participant sets. If there is a possibility that one or more participant sets do not have a required signature field in the files included in the API call, all signer participant sets should include a special index value of '0' to make this automatically appended signature page visible to the signer. Not doing so may result in an error. For all other roles, you may omit this value to exclude this page. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/AgreementCreationResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.AgreementCreationResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Id** | **string** | The unique identifier of the agreement | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/AgreementDocumentImageUrlsInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.AgreementDocumentImageUrlsInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **DocumentId** | **string** | Id of the document | [optional] 7 | **DocumentImageUrlsList** | [**List<DocumentImageUrls>**](DocumentImageUrls.md) | A list of documents image URLs. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/AgreementDocuments.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.AgreementDocuments 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Documents** | [**List<Document>**](Document.md) | A list of documents | [optional] 7 | **SupportingDocuments** | [**List<SupportingDocument>**](SupportingDocument.md) | A list of supporting documents | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/AgreementEventList.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.AgreementEventList 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Events** | [**List<AgreementEvent>**](AgreementEvent.md) | An array of event objects. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/AgreementFormFields.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.AgreementFormFields 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Fields** | [**List<FormField>**](FormField.md) | List of the form fields in an agreement | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/AgreementRejectionInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.AgreementRejectionInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Comment** | **string** | Comment describing the reason to reject this agreement. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/AgreementStateInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.AgreementStateInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **AgreementCancellationInfo** | [**AgreementCancellationInfo**](AgreementCancellationInfo.md) | Cancellation information for the agreement | [optional] 7 | **State** | **string** | The state in which the agreement should land | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/AgreementView.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.AgreementView 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **EmbeddedCode** | **string** | Embedded code of url of resource | [optional] 7 | **Expiration** | **DateTime?** | Expiration of user url | [optional] 8 | **IsCurrent** | **bool?** | True if this view is the current view | [optional] 9 | **Name** | **string** | Name of the requested agreement view | [optional] 10 | **Url** | **string** | Url of resource location | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /docs/AgreementViewInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.AgreementViewInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **CommonViewConfiguration** | [**CommonViewConfiguration**](CommonViewConfiguration.md) | Common view configuration for all the available views | [optional] 7 | **ComposeViewConfiguration** | [**ComposeViewConfiguration**](ComposeViewConfiguration.md) | Compose page view configuration | [optional] 8 | **Name** | **string** | Name of the requested agreement view | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/AgreementViews.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.AgreementViews 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **AgreementViewList** | [**List<AgreementView>**](AgreementView.md) | List of agreement views | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/BaseUriInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.baseUris.BaseUriInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **ApiAccessPoint** | **string** | The access point from where other APIs need to be accessed. In case other APIs are accessed from a different end point, it will be considered an invalid request | [optional] 7 | **WebAccessPoint** | **string** | The access point from where Adobe Sign website can be be accessed | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/CCParticipantInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.CCParticipantInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Company** | **string** | Company of the CC participant, if available. | [optional] 7 | **Email** | **string** | Email of the CC participant of the widget | [optional] 8 | **Name** | **string** | Name of the CC participant, if available. | [optional] 9 | **ParticipantId** | **string** | The unique identifier of the CC participant of the widget. | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /docs/ChildAgreementsInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.ChildAgreementsInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **FileInfo** | [**MegaSignChildAgreementsFileInfo**](MegaSignChildAgreementsFileInfo.md) | File info containing per child agreement information of megaSign. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/CombinedDocumentPagesInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.CombinedDocumentPagesInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **DocumentPagesInfo** | [**List<DocumentPageInfo>**](DocumentPageInfo.md) | List of basic information of all pages of the combined document of an Agreement. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/CommonViewConfiguration.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.CommonViewConfiguration 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **AutoLoginUser** | **bool?** | Auto LogIn Flag. If true, the URL returned will automatically log the user in. If false, the URL returned will require the credentials. By default its value is false | [optional] 7 | **Locale** | **string** | Message template locale | [optional] 8 | **NoChrome** | **bool?** | No Chrome Flag. If true, the embedded page is shown without a navigation header or footer. If false, the standard page header and footer will be present. By default its value is false | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/ComposeViewConfiguration.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.ComposeViewConfiguration 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **FileUploadOptions** | [**FileUploadOptions**](FileUploadOptions.md) | Controls various file upload options available on the compose page | [optional] 7 | **IsPreviewSelected** | **bool?** | Should the compose page be provided with authoring mode selected? | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/DelegatedParticipantInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.DelegatedParticipantInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Email** | **string** | Email of the participant. In case of modifying a participant set (PUT) this is a required field. In case of GET, this is the required field and will always be returned unless it is a fax workflow (legacy agreements) that were created using fax as input | [optional] 7 | **SecurityOption** | [**DelegatedParticipantSecurityOption**](DelegatedParticipantSecurityOption.md) | Security options that apply to the participant. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/DelegatedParticipantSecurityOption.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.DelegatedParticipantSecurityOption 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **PhoneInfo** | [**PhoneInfo**](PhoneInfo.md) | The phoneInfo required for the participant to view and sign the document | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/DelegatedParticipantSetInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.DelegatedParticipantSetInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **MemberInfos** | [**List<DelegatedParticipantInfo>**](DelegatedParticipantInfo.md) | Array of ParticipantInfo objects, containing participant-specific data (e.g. email). All participants in the array belong to the same set | [optional] 7 | **PrivateMessage** | **string** | Participant set's private message - all participants in the set will receive the same message. This cannot be changed as part of the PUT call. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/DelegationResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.DelegationResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Id** | **string** | The unique identifier of the participant set to which the agreement was forwarded. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/DetailedGroupInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.groups.DetailedGroupInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Created** | **DateTime?** | Date of creation of the group. Format would be yyyy-MM-dd'T'HH:mm:ssZ. For example, e.g 2016-02-25T18:46:19Z represents UTC time | [optional] 7 | **Id** | **string** | The unique identifier of the Group. This will be returned as part of GET call but is not mandatory to be passed as part of PUT/POST call for groups/{groupId} | [optional] 8 | **Name** | **string** | Name of the group | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/DetailedParticipantInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.DetailedParticipantInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Company** | **string** | The company of the participant, if available. This cannot be changed as part of the PUT call. | [optional] 7 | **Email** | **string** | Email of the participant. In case of modifying a participant set (PUT) this is a required field. In case of GET, this is the required field and will always be returned unless it is a fax workflow (legacy agreements) that were created using fax as input | [optional] 8 | **Fax** | **string** | Fax of the participant. New Agreements can not be created with fax option. This is only returned for legacy agreements created with fax as participants | [optional] 9 | **Id** | **string** | The unique identifier of the participant. This will be returned as part of Get call but is not mandatory to be passed as part of PUT call for agreements/{id}/members/participantSets/{id}. | [optional] 10 | **Name** | **string** | The name of the participant, if available. This cannot be changed as part of the PUT call. | [optional] 11 | **PrivateMessage** | **string** | The private message of the participant, if available. This cannot be changed as part of the PUT call. | [optional] 12 | **SecurityOption** | [**ParticipantSecurityOption**](ParticipantSecurityOption.md) | Security options that apply to the participant. | [optional] 13 | **Self** | **bool?** | True if this participant is the same user that is calling the API. Returned as part of Get. Ignored (not required) if modifying a participant set (PUT). | [optional] 14 | **Status** | **string** | The status of the participant. This cannot be changed as part of the PUT call. New participants will be ignored if added with a REPLACED status. | [optional] 15 | 16 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 17 | 18 | -------------------------------------------------------------------------------- /docs/DetailedParticipantSetInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.DetailedParticipantSetInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Id** | **string** | The unique identifier of the participant set. This cannot be changed as part of the PUT call. | [optional] 7 | **MemberInfos** | [**List<DetailedParticipantInfo>**](DetailedParticipantInfo.md) | Array of ParticipantInfo objects, containing participant-specific data (e.g. email). All participants in the array belong to the same set | [optional] 8 | **Name** | **string** | Name of ParticipantSet (it can be empty, but needs not to be unique in a single agreement). Maximum no of characters in participant set name is restricted to 255. This cannot be changed as part of the PUT call. | [optional] 9 | **Order** | **int?** | Index indicating sequential signing group (specified for hybrid routing). This cannot be changed as part of the PUT call. | [optional] 10 | **PrivateMessage** | **string** | Participant set's private message - all participants in the set will receive the same message. This cannot be changed as part of the PUT call. | [optional] 11 | **Role** | **string** | Role assumed by all participants in the set (signer, approver etc.). This cannot be changed as part of the PUT call. | [optional] 12 | **Status** | **string** | The agreement status with respect to the participant set. This cannot be changed as part of the PUT call. | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | -------------------------------------------------------------------------------- /docs/DetailedUserInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.users.DetailedUserInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **AccountType** | **string** | Type of account to which the user belongs (null if no account) | [optional] 7 | **Company** | **string** | The name of company of the user | [optional] 8 | **Email** | **string** | The email address of the user | [optional] 9 | **FirstName** | **string** | The first name of the user | [optional] 10 | **Id** | **string** | A unique identifier of the user resource for REST APIs as issued by Sign. | [optional] 11 | **Initials** | **string** | The initials of the user | [optional] 12 | **IsAccountAdmin** | **bool?** | True if the user is account admin | [optional] 13 | **LastName** | **string** | The last name of the user | [optional] 14 | **Locale** | **string** | The UI locale of the user | [optional] 15 | **Phone** | **string** | The phone number of the user | [optional] 16 | **Status** | **string** | Status of the user | [optional] 17 | **Title** | **string** | The job title of the user | [optional] 18 | 19 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 20 | 21 | -------------------------------------------------------------------------------- /docs/DetailedWidgetParticipantSetInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.DetailedWidgetParticipantSetInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Id** | **string** | The unique identifier of the participant set. This cannot be changed as part of the PUT call. | [optional] 7 | **MemberInfos** | [**List<DetailedParticipantInfo>**](DetailedParticipantInfo.md) | Array of ParticipantInfo objects, containing participant-specific data (e.g. email). All participants in the array belong to the same set | [optional] 8 | **Order** | **int?** | Index indicating sequential signing group (specified for hybrid routing). This cannot be changed as part of the PUT call. | [optional] 9 | **Role** | **string** | Role assumed by all participants in the set (signer, approver etc.). This cannot be changed as part of the PUT call. | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /docs/DeviceLocation.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.DeviceLocation 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Latitude** | **float?** | Latitude coordinate | [optional] 7 | **Longitude** | **float?** | Longitude coordinate | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/DigitalSignatureInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.DigitalSignatureInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Company** | **string** | Company name captured during digital signing | [optional] 7 | **Email** | **string** | Email captured during digital signing | [optional] 8 | **Name** | **string** | Name captured during digital signing | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/DisplayParticipantInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.DisplayParticipantInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Company** | **string** | Displays the name of the company of the user, if available | [optional] 7 | **Email** | **string** | Displays the email of the user | [optional] 8 | **FullName** | **string** | Displays the full name of the user, if available. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/DisplayParticipantSetInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.DisplayParticipantSetInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **DisplayUserSetMemberInfos** | [**List<DisplayParticipantInfo>**](DisplayParticipantInfo.md) | Displays the info about user set | [optional] 7 | **DisplayUserSetName** | **string** | The name of the display user set. Returned only, if the API caller is the sender of agreement. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/DisplayWidgetParticipantSetInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.DisplayWidgetParticipantSetInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **DisplayUserSetMemberInfos** | [**List<DisplayParticipantInfo>**](DisplayParticipantInfo.md) | Displays the info about user set | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/Document.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.Document 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Id** | **string** | ID of the document. In case of PUT call, this is the only field that is accepted in Document structure. Name and mimeType are ignored in case of PUT call | [optional] 7 | **Label** | **string** | Label of the document | [optional] 8 | **MimeType** | **string** | mimeType of the original file. This is returned in GET but not accepted back in PUT | [optional] 9 | **Name** | **string** | Name of the original document uploaded. This is returned in GET but not accepted back in PUT | [optional] 10 | **NumPages** | **int?** | Number of pages in the document | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /docs/DocumentImageUrls.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.DocumentImageUrls 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **ImageSize** | **string** | ImageSize corresponding to the imageUrl returned | [optional] 7 | **ImageURLs** | [**List<PageImageUrl>**](PageImageUrl.md) | A list of image url (one per page). | [optional] 8 | **ImagesAvailable** | **bool?** | true if images for the associated image size is available, else false. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/DocumentImageUrlsInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.DocumentImageUrlsInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **DocumentId** | **string** | Id of the document | [optional] 7 | **DocumentImageUrlsList** | [**List<DocumentImageUrls>**](DocumentImageUrls.md) | A list of documents image URLs. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/DocumentPageInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.DocumentPageInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Height** | **double?** | Height of the page | [optional] 7 | **Index** | **int?** | Index of the page in combined document starting from 1 | [optional] 8 | **Rotation** | **double?** | Rotation angle of the page in clockwise direction in degree | [optional] 9 | **Width** | **double?** | Width of the page | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /docs/DocumentUrl.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.DocumentUrl 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Url** | **string** | Secure URL of the document | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/Documents.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.Documents 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **_Documents** | [**List<Document>**](Document.md) | A list of documents | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/DocumentsImageUrlsInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.DocumentsImageUrlsInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **OriginalDocumentsImageUrlsInfo** | [**List<DocumentImageUrlsInfo>**](DocumentImageUrlsInfo.md) | A list of original document image URLs info. | [optional] 7 | **SupportingDocumentsImageUrlsInfo** | [**List<DocumentImageUrlsInfo>**](DocumentImageUrlsInfo.md) | A list of supporting document image URLs info. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/EmailOption.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.EmailOption 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **SendOptions** | [**SendOptions**](SendOptions.md) | Specify emails to be sent to different participants at different steps of the agreement process. Note: ALL means emails for the events will be sent to all participants. NONE means emails for the events will not be sent to any participant | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/ExternalId.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.ExternalId 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Id** | **string** | An arbitrary value from your system, which can be specified at sending time and then later returned or queried | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/FileInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.FileInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Document** | [**Document**](Document.md) | A document that is associated with the widget. This field cannot be provided in POST call. In case of GET call, this is the only field returned in the response | [optional] 7 | **TransientDocumentId** | **string** | ID for a transient document that will be added to the widget | [optional] 8 | **UrlFileInfo** | [**URLFileInfo**](URLFileInfo.md) | URL for an external document to add to the agreement | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/FileUploadOptions.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.FileUploadOptions 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **LibraryDocument** | **bool?** | Whether library documents link should appear or not. Default value is taken as true | [optional] 7 | **LocalFile** | **bool?** | Whether local file upload button should appear or not. Default value is taken as true | [optional] 8 | **WebConnectors** | **bool?** | Whether link to attach documents from web sources like Dropbox should appear or not. Default value is taken as true | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/FormFieldConditionPredicate.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.FormFieldConditionPredicate 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **FieldLocationIndex** | **int?** | Index of the location of the form field used in the predicate | [optional] 7 | **FieldName** | **string** | Name of the field whose value is the basis of predicate | [optional] 8 | **_Operator** | **string** | Operator to be applied on the value of the predicate field. | [optional] 9 | **Value** | **string** | Value to compare against the value of the predicate's form field, using the specified operator | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /docs/FormFieldConditionalAction.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.FormFieldConditionalAction 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Action** | **string** | Action to show/hide the form field is to be taken on the basis of evaluation of conditions. | [optional] 7 | **AnyOrAll** | **string** | It indicates if any one of the conditions or all of them have to be true. | [optional] 8 | **Predicates** | [**List<FormFieldConditionPredicate>**](FormFieldConditionPredicate.md) | The predicates to be evaluated in order to determine whether this condition is true | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/FormFieldHyperlink.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.FormFieldHyperlink 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **DocumentLocation** | [**FormFieldLocation**](FormFieldLocation.md) | Location on the document pointed by the link in case of INTERNAL type link | [optional] 7 | **LinkType** | **string** | Type of link in an agreement. | [optional] 8 | **Url** | **string** | URL, in case of EXTERNAL type link | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/FormFieldLocation.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.FormFieldLocation 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Height** | **double?** | Height of the form field in pixels | [optional] 7 | **Left** | **double?** | No. of pixels from left of the page for form field placement | [optional] 8 | **PageNumber** | **int?** | Number of the page where form field has to be placed, starting from 1. | [optional] 9 | **Top** | **double?** | No. of pixels from bottom of the page for form field placement | [optional] 10 | **Width** | **double?** | Width of the form field in pixels | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /docs/FormFieldMergeInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.FormFieldMergeInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **FieldMergeInfos** | [**List<MergefieldInfo>**](MergefieldInfo.md) | A mapping of field names to default values | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/FormFieldPostInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.FormFieldPostInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **TemplateId** | **string** | The ID of the template from which to add new fields | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/FormFieldPutInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.FormFieldPutInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Fields** | [**List<FormField>**](FormField.md) | The list of fields to update or replace. PDF_SIGNATURE inputType field is currently not supported. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/GroupInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.groups.GroupInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **GroupId** | **string** | Unique identifier of the group | [optional] 7 | **GroupName** | **string** | Name of the group | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/GroupUserInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.groups.GroupUserInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Company** | **string** | The name of company of the user | [optional] 7 | **Email** | **string** | The email address of the user | [optional] 8 | **FirstName** | **string** | The first name of the user | [optional] 9 | **Id** | **string** | A unique identifier of the user resource for REST APIs. This identifier can not be used in SOAP APIs | [optional] 10 | **IsGroupAdmin** | **bool?** | True if user is group admin | [optional] 11 | **LastName** | **string** | The last name of the user | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | -------------------------------------------------------------------------------- /docs/GroupUsersInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.groups.GroupUsersInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Page** | [**PageInfo**](PageInfo.md) | Pagination information for navigating through the response | [optional] 7 | **UserInfoList** | [**List<GroupUserInfo>**](GroupUserInfo.md) | The list of users in the account. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/GroupsInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.groups.GroupsInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **GroupInfoList** | [**List<GroupInfo>**](GroupInfo.md) | The list of groups in the account. | [optional] 7 | **Page** | [**PageInfo**](PageInfo.md) | Pagination information for navigating through the response | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/LibDocEventDeviceLocation.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.LibDocEventDeviceLocation 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Latitude** | **float?** | Latitude coordinate | [optional] 7 | **Longitude** | **float?** | Longitude coordinate | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/LibraryDocument.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.LibraryDocument 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **CreatorEmail** | **string** | Email address of the library document creator. It will be ignored in POST/PUT requests | [optional] 7 | **Id** | **string** | The unique identifier that is used to refer to the library template | [optional] 8 | **Hidden** | **bool?** | True if Library Document is hidden | [optional] 9 | **ModifiedDate** | **DateTime?** | The date on which the library document was last modified. Format would be yyyy-MM-dd'T'HH:mm:ssZ. For example, e.g 2016-02-25T18:46:19Z represents UTC time | [optional] 10 | **Name** | **string** | The name of the library document | [optional] 11 | **SharingMode** | **string** | Specifies who should have access to this library document. GLOBAL sharing mode is not applicable in POST/PUT requests | [optional] 12 | **Status** | **string** | Status of the library document | [optional] 13 | **TemplateTypes** | **List<string>** | A list of one or more library template types | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | -------------------------------------------------------------------------------- /docs/LibraryDocumentCreationInfoV6.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.LibraryDocumentCreationInfoV6 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **CreatedDate** | **DateTime?** | Date when library document was created. It will be ignored in POST/PUT requests. Format would be yyyy-MM-dd'T'HH:mm:ssZ. For example, e.g 2016-02-25T18:46:19Z represents UTC time | [optional] 7 | **CreatorEmail** | **string** | Email address of the library document creator. It will be ignored in POST/PUT requests | [optional] 8 | **CreatorName** | **string** | Name of the library document creator. It will be ignored in POST/PUT requests | [optional] 9 | **FileInfos** | [**List<FileInfo>**](FileInfo.md) | A list of one or more files (or references to files) that will be used to create the template. If more than one file is provided, they will be combined into one PDF. Note: Only a single parameter in every FileInfo object must be specified | [optional] 10 | **Id** | **string** | The unique identifier that is used to refer to the library template. It will be ignored in POST requests | [optional] 11 | **ModifiedDate** | **DateTime?** | Date when library document was last modified. It will be ignored in POST/PUT requests. Format would be yyyy-MM-dd'T'HH:mm:ssZ. For example, e.g 2016-02-25T18:46:19Z represents UTC time | [optional] 12 | **Name** | **string** | The name of the library template that will be used to identify it, in emails and on the website | [optional] 13 | **SharingMode** | **string** | Specifies who should have access to this library document. GLOBAL sharing mode is not applicable in POST/PUT requests | [optional] 14 | **State** | **string** | State of the library document. | [optional] 15 | **Status** | **string** | Status of the library document | [optional] 16 | **TemplateTypes** | **List<string>** | A list of one or more library template types | [optional] 17 | 18 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 19 | 20 | -------------------------------------------------------------------------------- /docs/LibraryDocumentCreationResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.LibraryDocumentCreationResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Id** | **string** | The unique identifier that is used to refer to the library template | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/LibraryDocumentEventList.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.LibraryDocumentEventList 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Events** | [**List<LibraryDocumentEvent>**](LibraryDocumentEvent.md) | An array of event objects. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/LibraryDocumentInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.LibraryDocumentInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **CreatedDate** | **DateTime?** | Date when library document was created. It will be ignored in POST/PUT requests. Format would be yyyy-MM-dd'T'HH:mm:ssZ. For example, e.g 2016-02-25T18:46:19Z represents UTC time | [optional] 7 | **CreatorEmail** | **string** | Email address of the library document creator. It will be ignored in POST/PUT requests | [optional] 8 | **CreatorName** | **string** | Name of the library document creator. It will be ignored in POST/PUT requests | [optional] 9 | **FileInfos** | [**List<FileInfo>**](FileInfo.md) | A list of one or more files (or references to files) that will be used to create the template. If more than one file is provided, they will be combined into one PDF. Note: Only a single parameter in every FileInfo object must be specified | [optional] 10 | **Id** | **string** | The unique identifier that is used to refer to the library template. It will be ignored in POST requests | [optional] 11 | **ModifiedDate** | **DateTime?** | Date when library document was last modified. It will be ignored in POST/PUT requests. Format would be yyyy-MM-dd'T'HH:mm:ssZ. For example, e.g 2016-02-25T18:46:19Z represents UTC time | [optional] 12 | **Name** | **string** | The name of the library template that will be used to identify it, in emails and on the website | [optional] 13 | **SharingMode** | **string** | Specifies who should have access to this library document. GLOBAL sharing mode is not applicable in POST/PUT requests | [optional] 14 | **State** | **string** | State of the library document. | [optional] 15 | **Status** | **string** | Status of the library document | [optional] 16 | **TemplateTypes** | **List<string>** | A list of one or more library template types | [optional] 17 | 18 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 19 | 20 | -------------------------------------------------------------------------------- /docs/LibraryDocumentStateInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.LibraryDocumentStateInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **State** | **string** | State of the library document. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/LibraryDocumentViewResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.LibraryDocumentViewResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **LibraryViewList** | [**List<LibraryView>**](LibraryView.md) | List of library docuemnt views | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/LibraryDocuments.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.LibraryDocuments 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **LibraryDocumentList** | [**List<LibraryDocument>**](LibraryDocument.md) | An array of document library items | [optional] 7 | **Page** | [**PageInfo**](PageInfo.md) | Pagination information for navigating through the response | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/LibraryView.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.LibraryView 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **EmbeddedCode** | **string** | Embedded code of url of resource | [optional] 7 | **Expiration** | **DateTime?** | Expiration of user url | [optional] 8 | **IsCurrent** | **bool?** | True if this view is the current view | [optional] 9 | **Name** | **string** | Name of the requested libraryDocument view | [optional] 10 | **Url** | **string** | Url of resource location | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /docs/LibraryViewInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.LibraryViewInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **CommonViewConfiguration** | [**CommonViewConfiguration**](CommonViewConfiguration.md) | Common view configuration for all the available views | [optional] 7 | **Name** | **string** | Name of the requested libraryDocument view | [optional] 8 | **SendViewConfiguration** | [**SendViewConfiguration**](SendViewConfiguration.md) | Send page view configuration. This will be ignored for views other than SEND. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/MegaSign.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.MegaSign 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **DisplayDate** | **DateTime?** | The display date for the MegaSign parent agreement. Format would be yyyy-MM-dd'T'HH:mm:ssZ. For example, e.g 2016-02-25T18:46:19Z represents UTC time | [optional] 7 | **Id** | **string** | The unique identifier of the MegaSign parent agreement | [optional] 8 | **Esign** | **bool?** | True, if the signature type of the MegaSign parent agreement is ESIGN. False, if the signature type of the MegaSign parent agreement is WRITTEN | [optional] 9 | **Name** | **string** | Name of the MegaSign parent agreement | [optional] 10 | **Status** | **string** | Current status of the MegaSign parent agreement from the perspective of the user | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /docs/MegaSignCcInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.MegaSignCcInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Email** | **string** | Email of the CC participant of the megaSign. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/MegaSignChildAgreement.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.MegaSignChildAgreement 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **DisplayDate** | **DateTime?** | The display date for the agreement. Format would be yyyy-MM-dd'T'HH:mm:ssZ. For example, e.g 2016-02-25T18:46:19Z represents UTC time | [optional] 7 | **Id** | **string** | The unique identifier of the agreement.If provided in POST, it will simply be ignored | [optional] 8 | **Esign** | **bool?** | True if this is an e-sign document | [optional] 9 | **Name** | **string** | Name of the Agreement | [optional] 10 | **Status** | **string** | This is a server generated attribute which provides the detailed status of an agreement with respect to the apiCaller | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /docs/MegaSignChildAgreements.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.MegaSignChildAgreements 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **MegaSignChildAgreementList** | [**List<MegaSignChildAgreement>**](MegaSignChildAgreement.md) | A array of MegaSign child agreements | [optional] 7 | **Page** | [**PageInfo**](PageInfo.md) | Pagination information for navigating through the response | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/MegaSignChildAgreementsFileInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.MegaSignChildAgreementsFileInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **ChildAgreementsInfoFileId** | **string** | id of the file containg information about the existing childAgreementsInfo associated with the megaSign. Will be ignored in POST call and in case of GET call, this is the only thing that will be returned. The content of the file can be fetched through GET /megaSigns/{megaSignId}/childAgreementsInfo/{childAgreementsInfoFileId} endpoint. | [optional] 7 | **FileType** | **string** | Input type through which participantSetsInfos will be provided. Whichever input type is provided, the values should be provided in its corresponding value object. Currently we are supporting CSV file format for providing megaSIgn child recipients. | [optional] 8 | **TransientDocumentId** | **string** | Transient id of the input file which contains participantSetsInfos. Currently only csv format is suppported. More details about CSV format <a href='https://www.adobe.com/go/documentcloud_megasigncsv'>here</a> | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/MegaSignCreationResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.MegaSignCreationResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Id** | **string** | Unique identifier of the MegaSign parent agreement | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/MegaSignSecurityOption.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.MegaSignSecurityOption 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **ExternalAuthenticationMethod** | **string** | The authentication method for the participants to have access to view and sign the document. | [optional] 7 | **ExternalPassword** | **string** | The secondary password that will be used to protect signing the document for internal signers. Note that Adobe Sign will never show this password to anyone, so you will need to separately communicate it to any relevant parties. This password is applied only if password protection is specified for internal signers or all signers | [optional] 8 | **InternalAuthenticationMethod** | **string** | The authentication method for the participants to have access to view and sign the document. | [optional] 9 | **InternalPassword** | **string** | The secondary password that will be used to protect signing the document for external signers. Note that Adobe Sign will never show this password to anyone, so you will need to separately communicate it to any relevant parties. This password is applied only if password protection is specified for external signers or all signers | [optional] 10 | **OpenPassword** | **string** | The secondary password that will be used to secure the PDF document. Note that AdobeSign will never show this password to anyone, so you will need to separately communicate it to any relevant parties | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /docs/MegaSignStateInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.MegaSignStateInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **MegaSignCancellationInfo** | [**AgreementCancellationInfo**](AgreementCancellationInfo.md) | Cancellation information for the agreement. Mandatory while cancelling a megaSign | [optional] 7 | **State** | **string** | The state to which the megaSign is to be updated. The only valid state for this variable is currently, CANCELLED | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/MegaSignView.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.MegaSignView 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **EmbeddedCode** | **string** | Embedded code of url of resource | [optional] 7 | **Expiration** | **DateTime?** | Expiration of user url | [optional] 8 | **IsCurrent** | **bool?** | True if this view is the current view | [optional] 9 | **Name** | **string** | Name of the requested mega sign view | [optional] 10 | **Url** | **string** | Url of resource location | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /docs/MegaSignViewInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.MegaSignViewInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **CommonViewConfiguration** | [**CommonViewConfiguration**](CommonViewConfiguration.md) | Common view configuration for all the available views | [optional] 7 | **Name** | **string** | Name of the requested mega sign view | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/MegaSignViewResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.MegaSignViewResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **MegaSignViewList** | [**List<MegaSignView>**](MegaSignView.md) | List of mega sign views | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/MegaSigns.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.MegaSigns 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **MegaSignList** | [**List<MegaSign>**](MegaSign.md) | An array of MegaSign parent agreements | [optional] 7 | **Page** | [**PageInfo**](PageInfo.md) | Pagination information for navigating through the response | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/MegasignEventList.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.MegasignEventList 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Events** | [**List<MegasignEvent>**](MegasignEvent.md) | An array of event objects. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/MembersInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.MembersInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **CcsInfo** | [**List<CCParticipantInfo>**](CCParticipantInfo.md) | Information of CC participants of the agreement. | [optional] 7 | **NextParticipantSets** | [**List<DetailedParticipantSetInfo>**](DetailedParticipantSetInfo.md) | Information of next participant sets. | [optional] 8 | **ParticipantSets** | [**List<DetailedParticipantSetInfo>**](DetailedParticipantSetInfo.md) | Information about the participant Sets. | [optional] 9 | **SenderInfo** | [**SenderInfo**](SenderInfo.md) | Information of the sender of the agreement. | [optional] 10 | **SharesInfo** | [**List<ShareParticipantInfo>**](ShareParticipantInfo.md) | Information of the participants with whom the agreement has been shared. | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /docs/MergefieldInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.MergefieldInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **DefaultValue** | **string** | The default value of the field | [optional] 7 | **FieldName** | **string** | The name of the field | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/Note.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.Note 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **_Note** | **string** | Content of Note field | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/OfflineDeviceInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.OfflineDeviceInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **ApplicationDescription** | **string** | Application Description | [optional] 7 | **DeviceDescription** | **string** | Device Description | [optional] 8 | **DeviceTime** | **DateTime?** | The device local time. The device time provided should not be before 30 days of current date.Format should be yyyy-MM-dd'T'HH:mm:ssZ. For example, e.g 2016-02-25T18:46:19Z represents UTC time | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/PageImageUrl.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.PageImageUrl 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **PageNumber** | **int?** | Page number within the document. | [optional] 7 | **Url** | **string** | An image url. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/PageInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.PageInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **NextCursor** | **string** | Used to navigate to the next page. If not returned, there are no further pages. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/ParticipantSecurityOption.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.ParticipantSecurityOption 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **AuthenticationMethod** | **string** | The authentication method for the participants to have access to view and sign the document. When replacing a participant that has PASSWORD or PHONE authentication specified, you must supply a password or phone number for the new participant, and you cannot change the authentication method | [optional] 7 | **Password** | **string** | The password required for the participant to view and sign the document. Note that AdobeSign will never show this password to anyone, so you will need to separately communicate it to any relevant parties. The password will not be returned in GET call. When replacing a participant that has PASSWORD authentication specified, you must supply a password for the new participant. | [optional] 8 | **PhoneInfo** | [**PhoneInfo**](PhoneInfo.md) | The phoneInfo required for the participant to view and sign the document | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/ParticipantSetMemberInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.ParticipantSetMemberInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Email** | **string** | Email of the participant | [optional] 7 | **SecurityOption** | [**ParticipantSecurityOption**](ParticipantSecurityOption.md) | Security options that apply to the participant | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/PhoneInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.PhoneInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **CountryCode** | **string** | The numeric country calling code (ISD code) required for the participant to view and sign the document if authentication type is PHONE | [optional] 7 | **Phone** | **string** | The phone number required for the participant to view and sign the document if authentication method is PHONE. When replacing a participant that has PHONE authentication specified, you must supply a phone number for the new participant. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/PostSignOption.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.megaSigns.PostSignOption 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **RedirectDelay** | **int?** | The delay (in seconds) before the user is taken to the success page. If this value is greater than 0, the user will first see the standard Adobe Sign success message, and then after a delay will be redirected to your success page | [optional] 7 | **RedirectUrl** | **string** | A publicly accessible url to which the user will be sent after successfully completing the signing process | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/ReminderCreationResult.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.ReminderCreationResult 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Id** | **string** | An identifier of the reminder resource created on the server. If provided in POST or PUT, it will be ignored | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/RemindersResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.RemindersResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **ReminderInfoList** | [**List<ReminderInfo>**](ReminderInfo.md) | A list of one or more reminders created on the agreement specified by the unique identifier agreementId by the user invoking the API. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/SecurityOption.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.SecurityOption 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **OpenPassword** | **string** | The secondary password that will be used to secure the PDF document. Note that AdobeSign will never show this password to anyone, so you will need to separately communicate it to any relevant parties | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/SendOptions.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.SendOptions 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **CompletionEmails** | **string** | Control notification mails for agreement completion events - COMPLETED, CANCELLED, EXPIRED and REJECTED | [optional] 7 | **InFlightEmails** | **string** | Control notification mails for agreement-in-process events - DELEGATED, REPLACED | [optional] 8 | **InitEmails** | **string** | Control notification mails for Agreement initiation events - ACTION_REQUESTED and CREATED | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/SendViewConfiguration.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.libraryDocuments.SendViewConfiguration 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **AgrName** | **string** | The agreement name for the library document on the compose page | [optional] 7 | **FileUploadOptions** | [**FileUploadOptions**](FileUploadOptions.md) | Controls various file upload options available on the compose page | [optional] 8 | **IsPreviewSelected** | **bool?** | Should the compose page be provided with authoring mode selected? | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/SenderInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.SenderInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Company** | **string** | Company of the creator, if available. | [optional] 7 | **Email** | **string** | Email of the creator of the widget. | [optional] 8 | **Name** | **string** | Name of the creator, if available. | [optional] 9 | **ParticipantId** | **string** | The unique identifier of the creator of the widget. | [optional] 10 | **Self** | **bool?** | True if the creator of the widget is the same user that is calling the API. | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /docs/ShareCreationInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.ShareCreationInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Email** | **string** | The email address of the member with whom the agreement will be shared | [optional] 7 | **Message** | **string** | Optional message to the sharee | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/ShareCreationInfoList.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.ShareCreationInfoList 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **ShareCreationInfo** | [**List<ShareCreationInfo>**](ShareCreationInfo.md) | List of ShareCreationInfo | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/ShareCreationResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.ShareCreationResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Email** | **string** | The email address that was requested | [optional] 7 | **ParticipantId** | **string** | The unique identifier of the participant | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/ShareCreationResponseList.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.ShareCreationResponseList 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **_ShareCreationResponseList** | [**List<ShareCreationResponse>**](ShareCreationResponse.md) | List of ShareCreationResponse | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/ShareParticipantInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.ShareParticipantInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Company** | **string** | Company of the sharee participant of the widget, if available. | [optional] 7 | **Email** | **string** | Email of the sharee participant of the widget. | [optional] 8 | **Name** | **string** | Name of the sharee participant of the widget, if available. | [optional] 9 | **ParticipantId** | **string** | The unique identifier of the sharee participant of the widget. | [optional] 10 | **SharerParticipantId** | **string** | The unique identifier of the participant who shared the widget. | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /docs/SigningUrl.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.SigningUrl 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Email** | **string** | The email address of the signer associated with this signing url | [optional] 7 | **EsignUrl** | **string** | The email address of the signer associated with this signing url | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/SigningUrlResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.SigningUrlResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **SigningUrlSetInfos** | [**List<SigningUrlSetInfo>**](SigningUrlSetInfo.md) | An array of urls for signer sets involved in this agreement. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/SigningUrlSetInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.SigningUrlSetInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **SigningUrlSetName** | **string** | The name of the current signer set. Returned only, if the API caller is the sender of agreement | [optional] 7 | **SigningUrls** | [**List<SigningUrl>**](SigningUrl.md) | An array of urls for current signer set. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/SupportingDocument.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.SupportingDocument 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **DisplayLabel** | **string** | Display name of the document | [optional] 7 | **FieldName** | **string** | The name of the supporting document field | [optional] 8 | **Id** | **string** | Id representing the document | [optional] 9 | **MimeType** | **string** | Mime-type of the document | [optional] 10 | **NumPages** | **int?** | Number of pages in the document | [optional] 11 | **ParticipantId** | **string** | The unique identifier of the participant that uploaded the supporting document | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | -------------------------------------------------------------------------------- /docs/TransientDocumentResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.transientDocuments.TransientDocumentResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **TransientDocumentId** | **string** | The unique identifier of the uploaded document that can be used in an agreement or a megaSign or widget creation call | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/URLFileInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.URLFileInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **MimeType** | **string** | The mime type of the referenced file, used to determine if the file can be accepted and the necessary conversion steps can be performed | [optional] 7 | **Name** | **string** | The original system file name of the document being sent | [optional] 8 | **Url** | **string** | A publicly accessible URL for retrieving the raw file content | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/UserAgreement.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.UserAgreement 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **DisplayDate** | **DateTime?** | The display date for the agreement. Format would be yyyy-MM-dd'T'HH:mm:ssZ. For example, e.g 2016-02-25T18:46:19Z represents UTC time | [optional] 7 | **DisplayParticipantSetInfos** | [**List<DisplayParticipantSetInfo>**](DisplayParticipantSetInfo.md) | The most relevant current user set for the agreement. It is typically the next signer if the agreement is from the current user, or the sender if received from another user | [optional] 8 | **Id** | **string** | The unique identifier of the agreement.If provided in POST, it will simply be ignored | [optional] 9 | **Esign** | **bool?** | True if this is an e-sign document | [optional] 10 | **Hidden** | **bool?** | True if agreement is hidden for the user | [optional] 11 | **LatestVersionId** | **string** | A version ID which uniquely identifies the current version of the agreement | [optional] 12 | **Name** | **string** | Name of the Agreement | [optional] 13 | **Status** | **string** | This is a server generated attribute which provides the detailed status of an agreement with respect to the apiCaller | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | -------------------------------------------------------------------------------- /docs/UserAgreements.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.agreements.UserAgreements 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Page** | [**PageInfo**](PageInfo.md) | Pagination information for navigating through the response | [optional] 7 | **UserAgreementList** | [**List<UserAgreement>**](UserAgreement.md) | An array of UserAgreement items | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/UserGroupInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.users.UserGroupInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Id** | **string** | Unique identifier of the group | [optional] 7 | **IsGroupAdmin** | **bool?** | True if user is group admin. | [optional] 8 | **Name** | **string** | Name of the group. This will be ignored as part of PUT call. | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/UserGroupsInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.users.UserGroupsInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **GroupInfoList** | [**List<UserGroupInfo>**](UserGroupInfo.md) | The list of groups for given user. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/UserInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.users.UserInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Company** | **string** | The name of company of the user | [optional] 7 | **Email** | **string** | The email address of the user | [optional] 8 | **FirstName** | **string** | The first name of the user | [optional] 9 | **Id** | **string** | A unique identifier of the user resource for REST APIs as issued by Sign. | [optional] 10 | **IsAccountAdmin** | **bool?** | True if user is account admin | [optional] 11 | **LastName** | **string** | The last name of the user | [optional] 12 | 13 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 14 | 15 | -------------------------------------------------------------------------------- /docs/UserStateInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.users.UserStateInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Comment** | **string** | An optional comment describing why you want to activate/deactivate a given user | [optional] 7 | **State** | **string** | The state to which the user is to be updated. The valid states for this variable is currently, ACTIVE and INACTIVE | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/UserStatusUpdateResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.users.UserStatusUpdateResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Code** | **string** | The result of the attempt to activate or deactivate the user | [optional] 7 | **Message** | **string** | String result message if there was no error | [optional] 8 | **State** | **string** | A status value showing the result of this operation | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/UserView.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.users.UserView 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **EmbeddedCode** | **string** | Embedded code of url of resource | [optional] 7 | **Expiration** | **DateTime?** | Expiration of user url | [optional] 8 | **Name** | **string** | Name of the requested user view | [optional] 9 | **Url** | **string** | Url of resource location | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /docs/UserViewInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.users.UserViewInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **CommonViewConfiguration** | [**CommonViewConfiguration**](CommonViewConfiguration.md) | Common view configuration for all the available views | [optional] 7 | **Name** | **string** | Name of the requested user view | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/UserViewResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.users.UserViewResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **UserViewList** | [**List<UserView>**](UserView.md) | List of user views | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/UserWebhooks.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.webhooks.UserWebhooks 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Page** | [**PageInfo**](PageInfo.md) | Pagination information for navigating through the response | [optional] 7 | **UserWebhookList** | [**List<UserWebhook>**](UserWebhook.md) | An array of widget items | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/UserWidget.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.UserWidget 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Id** | **string** | The unique identifier of a widget | [optional] 7 | **Hidden** | **bool?** | True if agreement is hidden for the user | [optional] 8 | **Javascript** | **string** | The embedded javascript code of the widget | [optional] 9 | **ModifiedDate** | **DateTime?** | The date on which the widget was last modified. Format would be yyyy-MM-dd'T'HH:mm:ssZ. For example, e.g 2016-02-25T18:46:19Z represents UTC time | [optional] 10 | **Name** | **string** | The name of the widget. | [optional] 11 | **Status** | **string** | The widget status (AUTHORING, ACTIVE, DRAFT, DISABLED) | [optional] 12 | **Url** | **string** | The hosted url of the widget | [optional] 13 | 14 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 15 | 16 | -------------------------------------------------------------------------------- /docs/UserWidgets.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.UserWidgets 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Page** | [**PageInfo**](PageInfo.md) | Pagination information for navigating through the response | [optional] 7 | **UserWidgetList** | [**List<UserWidget>**](UserWidget.md) | An array of widget items | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/UserWorkflow.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.workflows.UserWorkflow 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Created** | **DateTime?** | The date on which the workflow was created. Format would be yyyy-MM-dd'T'HH:mm:ssZ. For example, e.g 2016-02-25T18:46:19Z represents UTC time | [optional] 7 | **Description** | **string** | Description provided for this workflow at the time of its creation | [optional] 8 | **DisplayName** | **string** | The display name of the workflow. | [optional] 9 | **Id** | **string** | The unique identifier of a workflow | [optional] 10 | **Name** | **string** | The name of the workflow. | [optional] 11 | **Scope** | **string** | The workflow scope (ACCOUNT or GROUP or OTHER) | [optional] 12 | **ScopeId** | **string** | Identifier of scope. Currently it is applicable for scope GROUP only and the value will be groupId. | [optional] 13 | **Status** | **string** | The workflow status (ACTIVE or DRAFT or INACTIVE or OTHER) | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | -------------------------------------------------------------------------------- /docs/UserWorkflows.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.workflows.UserWorkflows 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **UserWorkflowList** | [**List<UserWorkflow>**](UserWorkflow.md) | An array of workflows | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/UsersInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.users.UsersInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Page** | [**PageInfo**](PageInfo.md) | Pagination information for navigating through the response | [optional] 7 | **UserInfoList** | [**List<UserInfo>**](UserInfo.md) | The list of users in the account. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/VaultingInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.VaultingInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Enabled** | **bool?** | For accounts set up for document vaulting and the option to enable per agreement, this determines whether the document is to be vaulted | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/VisibilityInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.VisibilityInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Visibility** | **string** | Specifies the visibility. The possible values are HIDE or SHOW | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/WebhookAgreementEvents.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.webhooks.WebhookAgreementEvents 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **IncludeDetailedInfo** | **bool?** | Determines whether agreement detailed info will be returned in the response payload | [optional] 7 | **IncludeDocumentsInfo** | **bool?** | Determines whether document info will be returned in the response payload | [optional] 8 | **IncludeParticipantsInfo** | **bool?** | Determines whether participants info will be returned in the response payload | [optional] 9 | **IncludeSignedDocuments** | **bool?** | Determines whether documents will be returned in webhook response payload. If set to true, signed document will be returned in base 64 encoded format in JSON when signing is complete | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /docs/WebhookConditionalParams.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.webhooks.WebhookConditionalParams 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **WebhookAgreementEvents** | [**WebhookAgreementEvents**](WebhookAgreementEvents.md) | Conditional parameters for webhook agreement events | [optional] 7 | **WebhookLibraryDocumentEvents** | [**WebhookLibraryDocumentEvents**](WebhookLibraryDocumentEvents.md) | Conditional parameters for webhook library document events | [optional] 8 | **WebhookMegaSignEvents** | [**WebhookMegaSignEvents**](WebhookMegaSignEvents.md) | Conditional parameters for webhook megasign events | [optional] 9 | **WebhookWidgetEvents** | [**WebhookWidgetEvents**](WebhookWidgetEvents.md) | Conditional parameters for webhook widget events | [optional] 10 | 11 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 12 | 13 | -------------------------------------------------------------------------------- /docs/WebhookCreationResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.webhooks.WebhookCreationResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Id** | **string** | An identifier of the webhook resource created | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/WebhookLibraryDocumentEvents.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.webhooks.WebhookLibraryDocumentEvents 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **IncludeDetailedInfo** | **bool?** | Determines whether agreement detailed info will be returned in the response payload | [optional] 7 | **IncludeDocumentsInfo** | **bool?** | Determines whether document info will be returned in the response payload | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/WebhookMegaSignEvents.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.webhooks.WebhookMegaSignEvents 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **IncludeDetailedInfo** | **bool?** | Determines whether megaign detailed info will be returned in the response payload | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/WebhookStateInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.webhooks.WebhookStateInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **State** | **string** | The state to which the webhook should be changed to | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/WebhookUrlInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.webhooks.WebhookUrlInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Url** | **string** | Info of webhook url | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/WebhookWidgetEvents.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.webhooks.WebhookWidgetEvents 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **IncludeDetailedInfo** | **bool?** | Determines whether agreement detailed info will be returned in the response payload | [optional] 7 | **IncludeDocumentsInfo** | **bool?** | Determines whether document info will be returned in the response payload | [optional] 8 | **IncludeParticipantsInfo** | **bool?** | Determines whether participants info will be returned in the response payload | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/WidgetAdditionalParticipationSetInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetAdditionalParticipationSetInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **MemberInfos** | [**List<ParticipantSetMemberInfo>**](ParticipantSetMemberInfo.md) | Array of ParticipantInfo objects, containing participant-specific data (email, e.g.) for all the additional participants in the widget | [optional] 7 | **Order** | **int?** | Index indicating position at which signing group needs to sign. Additional participant to sign at first place is assigned a index of 1. Widget participant should not have any order specified. Widget participant should not have any email address and and can not have phone authentication applied. Different signingOrder specified in input should form a valid consecutive increasing sequence of integers. Otherwise signingOrder will be considered invalid | [optional] 8 | **Role** | **string** | Role assumed by all participants in the set (signer, approver, etc.) Widget First Participant will only have roles - Signer, Approver, Acceptor and Form Filler | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/WidgetAgreement.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetAgreement 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **DisplayDate** | **DateTime?** | The display date for the agreement. Format would be yyyy-MM-dd'T'HH:mm:ssZ. For example, e.g 2016-02-25T18:46:19Z represents UTC time | [optional] 7 | **DisplayParticipantSetInfos** | [**List<DisplayWidgetParticipantSetInfo>**](DisplayWidgetParticipantSetInfo.md) | The most relevant current user set for the agreement. It is typically the next signer if the agreement is from the current user, or the sender if received from another user | [optional] 8 | **Id** | **string** | The unique identifier of the agreement.If provided in POST, it will simply be ignored | [optional] 9 | **Esign** | **bool?** | True if this is an e-sign document | [optional] 10 | **Hidden** | **bool?** | True if agreement is hidden for the user | [optional] 11 | **LatestVersionId** | **string** | A version ID which uniquely identifies the current version of the agreement | [optional] 12 | **Name** | **string** | Name of the Agreement | [optional] 13 | **Status** | **string** | The current status of the document from the perspective of the originator | [optional] 14 | 15 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 16 | 17 | -------------------------------------------------------------------------------- /docs/WidgetAgreements.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetAgreements 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Page** | [**PageInfo**](PageInfo.md) | Pagination information for navigating through the response | [optional] 7 | **UserAgreementList** | [**List<WidgetAgreement>**](WidgetAgreement.md) | An array of UserAgreement items | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/WidgetCcInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetCcInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Email** | **string** | Email of the CC participant of the widget | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/WidgetCreationResponse.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetCreationResponse 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Id** | **string** | The unique identifier of widget which can be used to retrieve the data entered by the signers. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/WidgetDocuments.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetDocuments 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Documents** | [**List<Document>**](Document.md) | A list of documents | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/WidgetDocumentsImageUrlsInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetDocumentsImageUrlsInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **DocumentsImageUrlsInfo** | [**List<DocumentImageUrlsInfo>**](DocumentImageUrlsInfo.md) | A list of original document image URLs info. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/WidgetEventDeviceLocation.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetEventDeviceLocation 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Latitude** | **float?** | Latitude coordinate | [optional] 7 | **Longitude** | **float?** | Longitude coordinate | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/WidgetEventList.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetEventList 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Events** | [**List<WidgetEvent>**](WidgetEvent.md) | An array of event objects. | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /docs/WidgetInActiveInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetInActiveInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Message** | **string** | Display this custom message to the user when the widget is accessed. Note that this can contain wiki markup to include clickable links in the message. This is required if redirectUrl is not provided. Both message and redirectUrl cannot be specified. | [optional] 7 | **RedirectUrl** | **string** | Redirect the user to this URL when the widget is accessed. This is required if message is not provided. Both message and redirectUrl cannot be specified. | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/WidgetMembersInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetMembersInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **AdditionalParticipantSets** | [**List<DetailedWidgetParticipantSetInfo>**](DetailedWidgetParticipantSetInfo.md) | Information about the widget additional participant Sets | [optional] 7 | **CcsInfo** | [**List<CCParticipantInfo>**](CCParticipantInfo.md) | Information of CC participants of the widget. | [optional] 8 | **CreatorInfo** | [**SenderInfo**](SenderInfo.md) | Information of the creator of the widget. | [optional] 9 | **SharesInfo** | [**List<ShareParticipantInfo>**](ShareParticipantInfo.md) | Information of the participants with whom the widget has been shared. | [optional] 10 | **WidgetParticipantSet** | [**DetailedWidgetParticipantSetInfo**](DetailedWidgetParticipantSetInfo.md) | Information about the widget participant Set | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /docs/WidgetParticipantSetInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetParticipantSetInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **MemberInfos** | [**List<ParticipantSetMemberInfo>**](ParticipantSetMemberInfo.md) | Array of ParticipantInfo objects, containing participant - specific data (email, e.g.). All participants in the array belong to the same set. Currently we are supporting only one member in the set. Since the email of the widget signer is unknown at the time of widget creation, the email should be left empty and its optional security options should be provided. | [optional] 7 | **Role** | **string** | Role assumed by all participants in the set (signer, approver, etc.) Widget First Participant will only have roles - Signer, Approver, Acceptor and Form Filler | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/WidgetRedirectionInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetRedirectionInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **Deframe** | **bool?** | If deframe is false, the resultant page will be shown inside the widget frame. If deframe is true, the resultant page will be shown in the full browser window. Note that in the case of embedded widgets, browser security restrictions do not permit automatic redirection in the full browser window, so if deframe is true the user will instead just see a link to the success page. We recommend this scenario be avoided - in other words, setting deframe to false is recommended for embedded widgets | [optional] 7 | **Delay** | **int?** | The delay (in seconds) before the user is taken to the resultant page. If this value is greater than 0, the user will first see the standard Adobe Sign result message, and then after a delay will be redirected to your resultant page. Note that this parameter has no effect for embedded widgets when deframe is true | [optional] 8 | **Url** | **string** | A publicly accessible url to which the user will be sent after successfully completing the widget. If the URL you provide includes information that allows you to identify the specific transaction, such as your own unique identifier, you can use the browser request to this URL as a callback to notify you that this transaction is completed. In addition, Adobe Sign will append a documentKey parameter to the URL which will contain the Adobe Sign DocumentKey for this signed widget, but only if the sender is the same as the API key user. Your application can use this value to get the form data for this widget | [optional] 9 | 10 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 11 | 12 | -------------------------------------------------------------------------------- /docs/WidgetStateInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetStateInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **State** | **string** | State of the Widget | [optional] 7 | **WidgetInActiveInfo** | [**WidgetInActiveInfo**](WidgetInActiveInfo.md) | The custom message which will be displayed to the user or the URL to which user will be redirected when the widget is accessed in a disabled state. This can only be specified in PUT request | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/WidgetView.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetView 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **EmbeddedCode** | **string** | Embedded code of url of resource | [optional] 7 | **Expiration** | **DateTime?** | Expiration of user url | [optional] 8 | **IsCurrent** | **bool?** | True if this view is the current view | [optional] 9 | **Name** | **string** | Name of the requested widget view | [optional] 10 | **Url** | **string** | Url of resource location | [optional] 11 | 12 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 13 | 14 | -------------------------------------------------------------------------------- /docs/WidgetViewInfo.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetViewInfo 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **CommonViewConfiguration** | [**CommonViewConfiguration**](CommonViewConfiguration.md) | Common view configuration for all the available views | [optional] 7 | **Name** | **string** | Name of the requested widget view | [optional] 8 | 9 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 10 | 11 | -------------------------------------------------------------------------------- /docs/WidgetViews.md: -------------------------------------------------------------------------------- 1 | # IO.Swagger.model.widgets.WidgetViews 2 | ## Properties 3 | 4 | Name | Type | Description | Notes 5 | ------------ | ------------- | ------------- | ------------- 6 | **WidgetViewList** | [**List<WidgetView>**](WidgetView.md) | List of widget views | [optional] 7 | 8 | [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 9 | 10 | -------------------------------------------------------------------------------- /git_push.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/ 3 | # 4 | # Usage example: /bin/sh ./git_push.sh wing328 swagger-petstore-perl "minor update" 5 | 6 | git_user_id=$1 7 | git_repo_id=$2 8 | release_note=$3 9 | 10 | if [ "$git_user_id" = "" ]; then 11 | git_user_id="GIT_USER_ID" 12 | echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id" 13 | fi 14 | 15 | if [ "$git_repo_id" = "" ]; then 16 | git_repo_id="GIT_REPO_ID" 17 | echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id" 18 | fi 19 | 20 | if [ "$release_note" = "" ]; then 21 | release_note="Minor update" 22 | echo "[INFO] No command line input provided. Set \$release_note to $release_note" 23 | fi 24 | 25 | # Initialize the local directory as a Git repository 26 | git init 27 | 28 | # Adds the files in the local repository and stages them for commit. 29 | git add . 30 | 31 | # Commits the tracked changes and prepares them to be pushed to a remote repository. 32 | git commit -m "$release_note" 33 | 34 | # Sets the new remote 35 | git_remote=`git remote` 36 | if [ "$git_remote" = "" ]; then # git remote not defined 37 | 38 | if [ "$GIT_TOKEN" = "" ]; then 39 | echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment." 40 | git remote add origin https://github.com/${git_user_id}/${git_repo_id}.git 41 | else 42 | git remote add origin https://${git_user_id}:${GIT_TOKEN}@github.com/${git_user_id}/${git_repo_id}.git 43 | fi 44 | 45 | fi 46 | 47 | git pull origin master 48 | 49 | # Pushes (Forces) the changes in the local repository up to the remote repository 50 | echo "Git pushing to https://github.com/${git_user_id}/${git_repo_id}.git" 51 | git push origin master 2>&1 | grep -v 'To https' 52 | 53 | -------------------------------------------------------------------------------- /mono_nunit_test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # 3 | # Generated by: https://github.com/swagger-api/swagger-codegen.git 4 | # 5 | 6 | wget -nc https://dist.nuget.org/win-x86-commandline/latest/nuget.exe 7 | mozroots --import --sync 8 | 9 | echo "[INFO] remove bin/Debug/SwaggerClientTest.dll" 10 | rm src/IO.Swagger.Test/bin/Debug/IO.Swagger.Test.dll 2> /dev/null 11 | 12 | echo "[INFO] install NUnit runners via NuGet" 13 | wget -nc https://dist.nuget.org/win-x86-commandline/latest/nuget.exe 14 | mozroots --import --sync 15 | mono nuget.exe install src/IO.Swagger.Test/packages.config -o packages 16 | 17 | echo "[INFO] Install NUnit runners via NuGet" 18 | mono nuget.exe install NUnit.Runners -Version 2.6.4 -OutputDirectory packages 19 | 20 | echo "[INFO] Build the solution and run the unit test" 21 | xbuild IO.Swagger.sln && \ 22 | mono ./packages/NUnit.Runners.2.6.4/tools/nunit-console.exe src/IO.Swagger.Test/bin/Debug/IO.Swagger.Test.dll 23 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.agreements/DocumentUrlTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.agreements; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing DocumentUrl 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class DocumentUrlTests 33 | { 34 | // TODO uncomment below to declare an instance variable for DocumentUrl 35 | //private DocumentUrl instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of DocumentUrl 44 | //instance = new DocumentUrl(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of DocumentUrl 58 | /// 59 | [Test] 60 | public void DocumentUrlInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" DocumentUrl 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a DocumentUrl"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Url' 69 | /// 70 | [Test] 71 | public void UrlTest() 72 | { 73 | // TODO unit test for the property 'Url' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.agreements/EmailOptionTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.agreements; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing EmailOption 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class EmailOptionTests 33 | { 34 | // TODO uncomment below to declare an instance variable for EmailOption 35 | //private EmailOption instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of EmailOption 44 | //instance = new EmailOption(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of EmailOption 58 | /// 59 | [Test] 60 | public void EmailOptionInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" EmailOption 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a EmailOption"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'SendOptions' 69 | /// 70 | [Test] 71 | public void SendOptionsTest() 72 | { 73 | // TODO unit test for the property 'SendOptions' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.agreements/ExternalIdTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.agreements; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing ExternalId 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class ExternalIdTests 33 | { 34 | // TODO uncomment below to declare an instance variable for ExternalId 35 | //private ExternalId instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of ExternalId 44 | //instance = new ExternalId(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of ExternalId 58 | /// 59 | [Test] 60 | public void ExternalIdInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" ExternalId 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a ExternalId"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Id' 69 | /// 70 | [Test] 71 | public void IdTest() 72 | { 73 | // TODO unit test for the property 'Id' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.agreements/FormFieldPutInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.agreements; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing FormFieldPutInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class FormFieldPutInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for FormFieldPutInfo 35 | //private FormFieldPutInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of FormFieldPutInfo 44 | //instance = new FormFieldPutInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of FormFieldPutInfo 58 | /// 59 | [Test] 60 | public void FormFieldPutInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" FormFieldPutInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a FormFieldPutInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Fields' 69 | /// 70 | [Test] 71 | public void FieldsTest() 72 | { 73 | // TODO unit test for the property 'Fields' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.agreements/NoteTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.agreements; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing Note 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class NoteTests 33 | { 34 | // TODO uncomment below to declare an instance variable for Note 35 | //private Note instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of Note 44 | //instance = new Note(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of Note 58 | /// 59 | [Test] 60 | public void NoteInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" Note 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a Note"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property '_Note' 69 | /// 70 | [Test] 71 | public void _NoteTest() 72 | { 73 | // TODO unit test for the property '_Note' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.agreements/PageInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.agreements; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing PageInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class PageInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for PageInfo 35 | //private PageInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of PageInfo 44 | //instance = new PageInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of PageInfo 58 | /// 59 | [Test] 60 | public void PageInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" PageInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a PageInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'NextCursor' 69 | /// 70 | [Test] 71 | public void NextCursorTest() 72 | { 73 | // TODO unit test for the property 'NextCursor' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.agreements/SecurityOptionTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.agreements; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing SecurityOption 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class SecurityOptionTests 33 | { 34 | // TODO uncomment below to declare an instance variable for SecurityOption 35 | //private SecurityOption instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of SecurityOption 44 | //instance = new SecurityOption(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of SecurityOption 58 | /// 59 | [Test] 60 | public void SecurityOptionInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" SecurityOption 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a SecurityOption"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'OpenPassword' 69 | /// 70 | [Test] 71 | public void OpenPasswordTest() 72 | { 73 | // TODO unit test for the property 'OpenPassword' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.agreements/VaultingInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.agreements; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing VaultingInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class VaultingInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for VaultingInfo 35 | //private VaultingInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of VaultingInfo 44 | //instance = new VaultingInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of VaultingInfo 58 | /// 59 | [Test] 60 | public void VaultingInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" VaultingInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a VaultingInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Enabled' 69 | /// 70 | [Test] 71 | public void EnabledTest() 72 | { 73 | // TODO unit test for the property 'Enabled' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.agreements/VisibilityInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.agreements; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing VisibilityInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class VisibilityInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for VisibilityInfo 35 | //private VisibilityInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of VisibilityInfo 44 | //instance = new VisibilityInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of VisibilityInfo 58 | /// 59 | [Test] 60 | public void VisibilityInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" VisibilityInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a VisibilityInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Visibility' 69 | /// 70 | [Test] 71 | public void VisibilityTest() 72 | { 73 | // TODO unit test for the property 'Visibility' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.groups/PageInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.groups; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing PageInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class PageInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for PageInfo 35 | //private PageInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of PageInfo 44 | //instance = new PageInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of PageInfo 58 | /// 59 | [Test] 60 | public void PageInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" PageInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a PageInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'NextCursor' 69 | /// 70 | [Test] 71 | public void NextCursorTest() 72 | { 73 | // TODO unit test for the property 'NextCursor' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.libraryDocuments/DocumentsTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.libraryDocuments; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing Documents 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class DocumentsTests 33 | { 34 | // TODO uncomment below to declare an instance variable for Documents 35 | //private Documents instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of Documents 44 | //instance = new Documents(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of Documents 58 | /// 59 | [Test] 60 | public void DocumentsInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" Documents 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a Documents"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property '_Documents' 69 | /// 70 | [Test] 71 | public void _DocumentsTest() 72 | { 73 | // TODO unit test for the property '_Documents' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.libraryDocuments/NoteTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.libraryDocuments; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing Note 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class NoteTests 33 | { 34 | // TODO uncomment below to declare an instance variable for Note 35 | //private Note instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of Note 44 | //instance = new Note(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of Note 58 | /// 59 | [Test] 60 | public void NoteInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" Note 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a Note"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property '_Note' 69 | /// 70 | [Test] 71 | public void _NoteTest() 72 | { 73 | // TODO unit test for the property '_Note' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.libraryDocuments/PageInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.libraryDocuments; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing PageInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class PageInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for PageInfo 35 | //private PageInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of PageInfo 44 | //instance = new PageInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of PageInfo 58 | /// 59 | [Test] 60 | public void PageInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" PageInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a PageInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'NextCursor' 69 | /// 70 | [Test] 71 | public void NextCursorTest() 72 | { 73 | // TODO unit test for the property 'NextCursor' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.libraryDocuments/VisibilityInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.libraryDocuments; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing VisibilityInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class VisibilityInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for VisibilityInfo 35 | //private VisibilityInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of VisibilityInfo 44 | //instance = new VisibilityInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of VisibilityInfo 58 | /// 59 | [Test] 60 | public void VisibilityInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" VisibilityInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a VisibilityInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Visibility' 69 | /// 70 | [Test] 71 | public void VisibilityTest() 72 | { 73 | // TODO unit test for the property 'Visibility' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.megaSigns/ExternalIdTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.megaSigns; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing ExternalId 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class ExternalIdTests 33 | { 34 | // TODO uncomment below to declare an instance variable for ExternalId 35 | //private ExternalId instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of ExternalId 44 | //instance = new ExternalId(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of ExternalId 58 | /// 59 | [Test] 60 | public void ExternalIdInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" ExternalId 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a ExternalId"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Id' 69 | /// 70 | [Test] 71 | public void IdTest() 72 | { 73 | // TODO unit test for the property 'Id' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.megaSigns/MegaSignCcInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.megaSigns; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing MegaSignCcInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class MegaSignCcInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for MegaSignCcInfo 35 | //private MegaSignCcInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of MegaSignCcInfo 44 | //instance = new MegaSignCcInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of MegaSignCcInfo 58 | /// 59 | [Test] 60 | public void MegaSignCcInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" MegaSignCcInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a MegaSignCcInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Email' 69 | /// 70 | [Test] 71 | public void EmailTest() 72 | { 73 | // TODO unit test for the property 'Email' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.megaSigns/PageInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.megaSigns; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing PageInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class PageInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for PageInfo 35 | //private PageInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of PageInfo 44 | //instance = new PageInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of PageInfo 58 | /// 59 | [Test] 60 | public void PageInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" PageInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a PageInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'NextCursor' 69 | /// 70 | [Test] 71 | public void NextCursorTest() 72 | { 73 | // TODO unit test for the property 'NextCursor' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.megaSigns/VaultingInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.megaSigns; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing VaultingInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class VaultingInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for VaultingInfo 35 | //private VaultingInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of VaultingInfo 44 | //instance = new VaultingInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of VaultingInfo 58 | /// 59 | [Test] 60 | public void VaultingInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" VaultingInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a VaultingInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Enabled' 69 | /// 70 | [Test] 71 | public void EnabledTest() 72 | { 73 | // TODO unit test for the property 'Enabled' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.users/PageInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.users; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing PageInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class PageInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for PageInfo 35 | //private PageInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of PageInfo 44 | //instance = new PageInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of PageInfo 58 | /// 59 | [Test] 60 | public void PageInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" PageInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a PageInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'NextCursor' 69 | /// 70 | [Test] 71 | public void NextCursorTest() 72 | { 73 | // TODO unit test for the property 'NextCursor' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.users/UserGroupsInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.users; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing UserGroupsInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class UserGroupsInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for UserGroupsInfo 35 | //private UserGroupsInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of UserGroupsInfo 44 | //instance = new UserGroupsInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of UserGroupsInfo 58 | /// 59 | [Test] 60 | public void UserGroupsInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" UserGroupsInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a UserGroupsInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'GroupInfoList' 69 | /// 70 | [Test] 71 | public void GroupInfoListTest() 72 | { 73 | // TODO unit test for the property 'GroupInfoList' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.webhooks/PageInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.webhooks; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing PageInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class PageInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for PageInfo 35 | //private PageInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of PageInfo 44 | //instance = new PageInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of PageInfo 58 | /// 59 | [Test] 60 | public void PageInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" PageInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a PageInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'NextCursor' 69 | /// 70 | [Test] 71 | public void NextCursorTest() 72 | { 73 | // TODO unit test for the property 'NextCursor' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.webhooks/WebhookStateInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.webhooks; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing WebhookStateInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class WebhookStateInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for WebhookStateInfo 35 | //private WebhookStateInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of WebhookStateInfo 44 | //instance = new WebhookStateInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of WebhookStateInfo 58 | /// 59 | [Test] 60 | public void WebhookStateInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" WebhookStateInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a WebhookStateInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'State' 69 | /// 70 | [Test] 71 | public void StateTest() 72 | { 73 | // TODO unit test for the property 'State' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.webhooks/WebhookUrlInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.webhooks; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing WebhookUrlInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class WebhookUrlInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for WebhookUrlInfo 35 | //private WebhookUrlInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of WebhookUrlInfo 44 | //instance = new WebhookUrlInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of WebhookUrlInfo 58 | /// 59 | [Test] 60 | public void WebhookUrlInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" WebhookUrlInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a WebhookUrlInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Url' 69 | /// 70 | [Test] 71 | public void UrlTest() 72 | { 73 | // TODO unit test for the property 'Url' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.widgets/NoteTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.widgets; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing Note 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class NoteTests 33 | { 34 | // TODO uncomment below to declare an instance variable for Note 35 | //private Note instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of Note 44 | //instance = new Note(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of Note 58 | /// 59 | [Test] 60 | public void NoteInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" Note 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a Note"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property '_Note' 69 | /// 70 | [Test] 71 | public void _NoteTest() 72 | { 73 | // TODO unit test for the property '_Note' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.widgets/PageInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.widgets; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing PageInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class PageInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for PageInfo 35 | //private PageInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of PageInfo 44 | //instance = new PageInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of PageInfo 58 | /// 59 | [Test] 60 | public void PageInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" PageInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a PageInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'NextCursor' 69 | /// 70 | [Test] 71 | public void NextCursorTest() 72 | { 73 | // TODO unit test for the property 'NextCursor' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.widgets/SecurityOptionTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.widgets; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing SecurityOption 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class SecurityOptionTests 33 | { 34 | // TODO uncomment below to declare an instance variable for SecurityOption 35 | //private SecurityOption instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of SecurityOption 44 | //instance = new SecurityOption(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of SecurityOption 58 | /// 59 | [Test] 60 | public void SecurityOptionInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" SecurityOption 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a SecurityOption"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'OpenPassword' 69 | /// 70 | [Test] 71 | public void OpenPasswordTest() 72 | { 73 | // TODO unit test for the property 'OpenPassword' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.widgets/VaultingInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.widgets; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing VaultingInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class VaultingInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for VaultingInfo 35 | //private VaultingInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of VaultingInfo 44 | //instance = new VaultingInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of VaultingInfo 58 | /// 59 | [Test] 60 | public void VaultingInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" VaultingInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a VaultingInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Enabled' 69 | /// 70 | [Test] 71 | public void EnabledTest() 72 | { 73 | // TODO unit test for the property 'Enabled' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.widgets/VisibilityInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.widgets; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing VisibilityInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class VisibilityInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for VisibilityInfo 35 | //private VisibilityInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of VisibilityInfo 44 | //instance = new VisibilityInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of VisibilityInfo 58 | /// 59 | [Test] 60 | public void VisibilityInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" VisibilityInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a VisibilityInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Visibility' 69 | /// 70 | [Test] 71 | public void VisibilityTest() 72 | { 73 | // TODO unit test for the property 'Visibility' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.widgets/WidgetCcInfoTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.widgets; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing WidgetCcInfo 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class WidgetCcInfoTests 33 | { 34 | // TODO uncomment below to declare an instance variable for WidgetCcInfo 35 | //private WidgetCcInfo instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of WidgetCcInfo 44 | //instance = new WidgetCcInfo(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of WidgetCcInfo 58 | /// 59 | [Test] 60 | public void WidgetCcInfoInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" WidgetCcInfo 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a WidgetCcInfo"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Email' 69 | /// 70 | [Test] 71 | public void EmailTest() 72 | { 73 | // TODO unit test for the property 'Email' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.widgets/WidgetDocumentsTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.widgets; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing WidgetDocuments 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class WidgetDocumentsTests 33 | { 34 | // TODO uncomment below to declare an instance variable for WidgetDocuments 35 | //private WidgetDocuments instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of WidgetDocuments 44 | //instance = new WidgetDocuments(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of WidgetDocuments 58 | /// 59 | [Test] 60 | public void WidgetDocumentsInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" WidgetDocuments 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a WidgetDocuments"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Documents' 69 | /// 70 | [Test] 71 | public void DocumentsTest() 72 | { 73 | // TODO unit test for the property 'Documents' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.widgets/WidgetEventListTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.widgets; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing WidgetEventList 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class WidgetEventListTests 33 | { 34 | // TODO uncomment below to declare an instance variable for WidgetEventList 35 | //private WidgetEventList instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of WidgetEventList 44 | //instance = new WidgetEventList(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of WidgetEventList 58 | /// 59 | [Test] 60 | public void WidgetEventListInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" WidgetEventList 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a WidgetEventList"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'Events' 69 | /// 70 | [Test] 71 | public void EventsTest() 72 | { 73 | // TODO unit test for the property 'Events' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.widgets/WidgetViewsTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.widgets; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing WidgetViews 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class WidgetViewsTests 33 | { 34 | // TODO uncomment below to declare an instance variable for WidgetViews 35 | //private WidgetViews instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of WidgetViews 44 | //instance = new WidgetViews(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of WidgetViews 58 | /// 59 | [Test] 60 | public void WidgetViewsInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" WidgetViews 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a WidgetViews"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'WidgetViewList' 69 | /// 70 | [Test] 71 | public void WidgetViewListTest() 72 | { 73 | // TODO unit test for the property 'WidgetViewList' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/model.workflows/UserWorkflowsTests.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 3 | * 4 | * OpenAPI spec version: 6.0.0 5 | * 6 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 7 | */ 8 | 9 | 10 | using NUnit.Framework; 11 | 12 | using System; 13 | using System.Linq; 14 | using System.IO; 15 | using System.Collections.Generic; 16 | using IO.Swagger.Api; 17 | using IO.Swagger.model.workflows; 18 | using IO.Swagger.Client; 19 | using System.Reflection; 20 | using Newtonsoft.Json; 21 | 22 | namespace IO.Swagger.Test 23 | { 24 | /// 25 | /// Class for testing UserWorkflows 26 | /// 27 | /// 28 | /// This file is automatically generated by Swagger Codegen. 29 | /// Please update the test case below to test the model. 30 | /// 31 | [TestFixture] 32 | public class UserWorkflowsTests 33 | { 34 | // TODO uncomment below to declare an instance variable for UserWorkflows 35 | //private UserWorkflows instance; 36 | 37 | /// 38 | /// Setup before each test 39 | /// 40 | [SetUp] 41 | public void Init() 42 | { 43 | // TODO uncomment below to create an instance of UserWorkflows 44 | //instance = new UserWorkflows(); 45 | } 46 | 47 | /// 48 | /// Clean up after each test 49 | /// 50 | [TearDown] 51 | public void Cleanup() 52 | { 53 | 54 | } 55 | 56 | /// 57 | /// Test an instance of UserWorkflows 58 | /// 59 | [Test] 60 | public void UserWorkflowsInstanceTest() 61 | { 62 | // TODO uncomment below to test "IsInstanceOfType" UserWorkflows 63 | //Assert.IsInstanceOfType (instance, "variable 'instance' is a UserWorkflows"); 64 | } 65 | 66 | 67 | /// 68 | /// Test the property 'UserWorkflowList' 69 | /// 70 | [Test] 71 | public void UserWorkflowListTest() 72 | { 73 | // TODO unit test for the property 'UserWorkflowList' 74 | } 75 | 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /src/IO.Swagger.Test/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/IO.Swagger/Client/ExceptionFactory.cs: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2019 Adobe Systems Incorporated. All rights reserved. 3 | * This file is licensed to you under the Apache License, Version 2.0 (the "License"); 4 | * you may not use this file except in compliance with the License. You may obtain a copy 5 | * of the License at http://www.apache.org/licenses/LICENSE-2.0 6 | * 7 | * Unless required by applicable law or agreed to in writing, software distributed under 8 | * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS 9 | * OF ANY KIND, either express or implied. See the License for the specific language 10 | * governing permissions and limitations under the License. 11 | * 12 | * 13 | **/ 14 | 15 | 16 | /* 17 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 18 | * 19 | * OpenAPI spec version: 6.0.0 20 | * 21 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 22 | */ 23 | 24 | 25 | using System; 26 | using RestSharp; 27 | 28 | namespace IO.Swagger.Client 29 | { 30 | /// 31 | /// A delegate to ExceptionFactory method 32 | /// 33 | /// Method name 34 | /// Response 35 | /// Exceptions 36 | public delegate Exception ExceptionFactory(string methodName, IRestResponse response); 37 | } 38 | -------------------------------------------------------------------------------- /src/IO.Swagger/Client/GlobalConfiguration.cs: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2019 Adobe Systems Incorporated. All rights reserved. 3 | * This file is licensed to you under the Apache License, Version 2.0 (the "License"); 4 | * you may not use this file except in compliance with the License. You may obtain a copy 5 | * of the License at http://www.apache.org/licenses/LICENSE-2.0 6 | * 7 | * Unless required by applicable law or agreed to in writing, software distributed under 8 | * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS 9 | * OF ANY KIND, either express or implied. See the License for the specific language 10 | * governing permissions and limitations under the License. 11 | * 12 | * 13 | **/ 14 | 15 | 16 | /* 17 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 18 | * 19 | * OpenAPI spec version: 6.0.0 20 | * 21 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 22 | */ 23 | 24 | 25 | using System; 26 | using System.Reflection; 27 | using System.Collections.Generic; 28 | using System.IO; 29 | using System.Linq; 30 | using System.Text; 31 | using System.Threading; 32 | 33 | namespace IO.Swagger.Client 34 | { 35 | /// 36 | /// provides a compile-time extension point for globally configuring 37 | /// API Clients. 38 | /// 39 | /// 40 | /// A customized implementation via partial class may reside in another file and may 41 | /// be excluded from automatic generation via a .swagger-codegen-ignore file. 42 | /// 43 | public partial class GlobalConfiguration : Configuration 44 | { 45 | 46 | } 47 | } -------------------------------------------------------------------------------- /src/IO.Swagger/Client/IApiAccessor.cs: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2019 Adobe Systems Incorporated. All rights reserved. 3 | * This file is licensed to you under the Apache License, Version 2.0 (the "License"); 4 | * you may not use this file except in compliance with the License. You may obtain a copy 5 | * of the License at http://www.apache.org/licenses/LICENSE-2.0 6 | * 7 | * Unless required by applicable law or agreed to in writing, software distributed under 8 | * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS 9 | * OF ANY KIND, either express or implied. See the License for the specific language 10 | * governing permissions and limitations under the License. 11 | * 12 | * 13 | **/ 14 | 15 | 16 | /* 17 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 18 | * 19 | * OpenAPI spec version: 6.0.0 20 | * 21 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 22 | */ 23 | 24 | 25 | using System; 26 | using System.Collections.Generic; 27 | using System.Collections.ObjectModel; 28 | using System.Linq; 29 | using RestSharp; 30 | 31 | namespace IO.Swagger.Client 32 | { 33 | /// 34 | /// Represents configuration aspects required to interact with the API endpoints. 35 | /// 36 | public interface IApiAccessor 37 | { 38 | /// 39 | /// Gets or sets the configuration object 40 | /// 41 | /// An instance of the Configuration 42 | Configuration Configuration {get; set;} 43 | 44 | /// 45 | /// Gets the base path of the API client. 46 | /// 47 | /// The base path 48 | String GetBasePath(); 49 | 50 | /// 51 | /// Provides a factory method hook for the creation of exceptions. 52 | /// 53 | ExceptionFactory ExceptionFactory { get; set; } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /src/IO.Swagger/Client/SwaggerDateConverter.cs: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2019 Adobe Systems Incorporated. All rights reserved. 3 | * This file is licensed to you under the Apache License, Version 2.0 (the "License"); 4 | * you may not use this file except in compliance with the License. You may obtain a copy 5 | * of the License at http://www.apache.org/licenses/LICENSE-2.0 6 | * 7 | * Unless required by applicable law or agreed to in writing, software distributed under 8 | * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS 9 | * OF ANY KIND, either express or implied. See the License for the specific language 10 | * governing permissions and limitations under the License. 11 | * 12 | * 13 | **/ 14 | 15 | 16 | /* 17 | * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 18 | * 19 | * OpenAPI spec version: 6.0.0 20 | * 21 | * Generated by: https://github.com/swagger-api/swagger-codegen.git 22 | */ 23 | 24 | using Newtonsoft.Json.Converters; 25 | 26 | namespace IO.Swagger.Client 27 | { 28 | /// 29 | /// Formatter for 'date' swagger formats ss defined by full-date - RFC3339 30 | /// see https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types 31 | /// 32 | public class SwaggerDateConverter : IsoDateTimeConverter 33 | { 34 | /// 35 | /// Initializes a new instance of the class. 36 | /// 37 | public SwaggerDateConverter() 38 | { 39 | // full-date = date-fullyear "-" date-month "-" date-mday 40 | DateTimeFormat = "yyyy-MM-ddTHH:mm:ssZ"; 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/IO.Swagger/IO.Swagger.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | $id$ 6 | Swagger Library 7 | 8 | 9 | $version$ 10 | 11 | 12 | $author$ 13 | 14 | 16 | $author$ 17 | false 18 | false 19 | 20 | 22 | A library generated from a Swagger doc 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /src/IO.Swagger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.InteropServices; 3 | 4 | // General Information about an assembly is controlled through the following 5 | // set of attributes. Change these attribute values to modify the information 6 | // associated with an assembly. 7 | [assembly: AssemblyTitle("Swagger Library")] 8 | [assembly: AssemblyDescription("A library generated from a Swagger doc")] 9 | [assembly: AssemblyConfiguration("")] 10 | [assembly: AssemblyCompany("Swagger")] 11 | [assembly: AssemblyProduct("SwaggerLibrary")] 12 | [assembly: AssemblyCopyright("No Copyright")] 13 | [assembly: AssemblyTrademark("")] 14 | [assembly: AssemblyCulture("")] 15 | 16 | // Setting ComVisible to false makes the types in this assembly not visible 17 | // to COM components. If you need to access a type in this assembly from 18 | // COM, set the ComVisible attribute to true on that type. 19 | [assembly: ComVisible(false)] 20 | 21 | // Version information for an assembly consists of the following four values: 22 | // 23 | // Major Version 24 | // Minor Version 25 | // Build Number 26 | // Revision 27 | // 28 | // You can specify all the values or you can default the Build and Revision Numbers 29 | // by using the '*' as shown below: 30 | // [assembly: AssemblyVersion("1.0.*")] 31 | [assembly: AssemblyVersion("1.0.0")] 32 | [assembly: AssemblyFileVersion("1.0.0")] 33 | -------------------------------------------------------------------------------- /src/IO.Swagger/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | --------------------------------------------------------------------------------