├── .swagger-codegen └── VERSION ├── settings.gradle ├── src ├── test │ ├── docs │ │ ├── DS.png │ │ ├── SignTest1.pdf │ │ ├── SignTest1.docx │ │ └── WordDocTest.docx │ ├── manifest.mf │ ├── nbproject │ │ ├── genfiles.properties │ │ └── project.xml │ └── dist │ │ └── README.TXT └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── docusign │ └── rooms │ ├── client │ ├── auth │ │ ├── OAuthFlow.java │ │ ├── AccessTokenListener.java │ │ ├── Authentication.java │ │ ├── HttpBasicAuth.java │ │ └── ApiKeyAuth.java │ ├── RFC3339DateFormat.java │ ├── Configuration.java │ ├── Pair.java │ ├── ApiResponse.java │ ├── StringUtil.java │ └── JSON.java │ └── model │ ├── ListingType.java │ ├── ProductVersion.java │ ├── AccountStatus.java │ ├── RoomStatus.java │ ├── AccessLevel.java │ ├── FieldsCustomDataFilterType.java │ ├── MemberSortingOption.java │ ├── RolesFilterContextTypes.java │ ├── RoomUserSortingOption.java │ ├── RoomPicture.java │ ├── NullableFieldData.java │ ├── ESignPermissionProfileList.java │ ├── FormForAdd.java │ ├── FormGroupForCreate.java │ ├── FormGroupForUpdate.java │ ├── ExternalFormFillSession.java │ ├── LockedOutDetails.java │ ├── DesignatedOffice.java │ ├── DesignatedRegion.java │ ├── DocumentUserForCreate.java │ ├── Envelope.java │ ├── DependsOn.java │ ├── UserForUpdate.java │ ├── TaskListForCreate.java │ ├── CustomData.java │ ├── RoomUserRemovalDetail.java │ ├── FieldData.java │ ├── ESignAccountRoleSettings.java │ ├── GlobalStates.java │ ├── FieldDataForCreate.java │ ├── FieldDataForUpdate.java │ ├── SelectListFieldOption.java │ ├── FieldSet.java │ ├── GlobalCountries.java │ ├── GlobalTimeZones.java │ ├── FormGroupSummary.java │ ├── GlobalCurrencies.java │ ├── FormLibrarySummary.java │ ├── RoomTemplate.java │ ├── State.java │ ├── RoomContactType.java │ ├── GlobalTaskStatuses.java │ ├── GlobalContactSides.java │ ├── Country.java │ ├── OfficeReferenceCount.java │ ├── GlobalActivityTypes.java │ ├── GlobalPropertyTypes.java │ ├── GlobalTaskDateTypes.java │ ├── Currency.java │ ├── TimeZone.java │ ├── GlobalOriginsOfLeads.java │ ├── GlobalFinancingTypes.java │ ├── TaskStatus.java │ ├── GlobalClosingStatuses.java │ ├── ContactSide.java │ ├── TaskListSummaryList.java │ ├── ActivityType.java │ ├── GlobalRoomContactTypes.java │ ├── GlobalTransactionSides.java │ ├── OriginOfLead.java │ ├── PropertyType.java │ ├── TaskDateType.java │ ├── RegionReferenceCountList.java │ ├── ClosingStatus.java │ ├── FinancingType.java │ ├── OfficeReferenceCountList.java │ ├── TransactionSide.java │ ├── FormGroupFormToAssign.java │ ├── GlobalSellerDecisionTypes.java │ ├── FormGroup.java │ ├── RoomUserForUpdate.java │ └── SellerDecisionType.java ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── .travis.yml ├── LICENSE ├── .swagger-codegen-ignore └── CHANGELOG.md /.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 2.4.21-SNAPSHOT -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "docusign-rooms-java" -------------------------------------------------------------------------------- /src/test/docs/DS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-rooms-java-client/master/src/test/docs/DS.png -------------------------------------------------------------------------------- /src/test/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /src/test/docs/SignTest1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-rooms-java-client/master/src/test/docs/SignTest1.pdf -------------------------------------------------------------------------------- /src/test/docs/SignTest1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-rooms-java-client/master/src/test/docs/SignTest1.docx -------------------------------------------------------------------------------- /src/test/docs/WordDocTest.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-rooms-java-client/master/src/test/docs/WordDocTest.docx -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docusign/docusign-rooms-java-client/master/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/client/auth/OAuthFlow.java: -------------------------------------------------------------------------------- 1 | 2 | 3 | package com.docusign.rooms.client.auth; 4 | 5 | /** 6 | * enum. 7 | * 8 | */ 9 | 10 | public enum OAuthFlow { 11 | accessCode, implicit, password, application 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/client/auth/AccessTokenListener.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.client.auth; 2 | 3 | import org.apache.oltu.oauth2.common.token.BasicOAuthToken; 4 | 5 | public interface AccessTokenListener { 6 | void notify(BasicOAuthToken token); 7 | } 8 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue May 17 23:08:05 CST 2016 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-bin.zip 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Mobile Tools for Java (J2ME) 2 | .mtj.tmp/ 3 | 4 | # Package Files # 5 | *.jar 6 | *.war 7 | *.ear 8 | 9 | # exclude jar for gradle wrapper 10 | !gradle/wrapper/*.jar 11 | 12 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 13 | hs_err_pid* 14 | 15 | # build files 16 | **/target 17 | target 18 | .gradle 19 | build 20 | *.class 21 | .classpath 22 | .settings 23 | .project 24 | 25 | # others 26 | .idea/ 27 | *.iml 28 | .DS_Store -------------------------------------------------------------------------------- /src/test/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=f04d81fd 2 | build.xml.script.CRC32=1b83c451 3 | build.xml.stylesheet.CRC32=8064a381@1.75.2.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=f04d81fd 7 | nbproject/build-impl.xml.script.CRC32=dcf6b1d8 8 | nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 9 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/client/auth/Authentication.java: -------------------------------------------------------------------------------- 1 | 2 | 3 | package com.docusign.rooms.client.auth; 4 | 5 | import com.docusign.rooms.client.Pair; 6 | 7 | import java.util.Map; 8 | import java.util.List; 9 | 10 | public interface Authentication { 11 | /** 12 | * Apply authentication settings to header and query params. 13 | * 14 | * @param queryParams List of query parameters 15 | * @param headerParams Map of header parameters 16 | */ 17 | void applyToParams(List queryParams, Map headerParams); 18 | } 19 | -------------------------------------------------------------------------------- /src/test/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | SdkTests 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: required 2 | dist: trusty 3 | install: true 4 | 5 | branches: 6 | only: 7 | - master 8 | 9 | language: java 10 | 11 | notifications: 12 | email: 13 | recipients: 14 | - devcenter@docusign.com 15 | on_success: never 16 | on_failure: change 17 | 18 | jdk: 19 | - oraclejdk11 20 | - oraclejdk12 21 | - oraclejdk13 22 | 23 | script: mvn -X clean test 24 | 25 | after_failure: "cat /home/travis/build/docusign/docusign-rooms-java-client/target/surefire-reports/SdkUnitTests.txt && cat /home/travis/build/docusign/docusign-rooms-java-client/target/surefire-reports/TEST-SdkUnitTests.xml" 26 | 27 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/client/RFC3339DateFormat.java: -------------------------------------------------------------------------------- 1 | 2 | package com.docusign.rooms.client; 3 | 4 | import com.fasterxml.jackson.databind.util.ISO8601DateFormat; 5 | import com.fasterxml.jackson.databind.util.ISO8601Utils; 6 | 7 | import java.text.FieldPosition; 8 | import java.util.Date; 9 | 10 | /** 11 | * RFC3339DateFormat class. 12 | * 13 | **/ 14 | public class RFC3339DateFormat extends ISO8601DateFormat { 15 | 16 | // Same as ISO8601DateFormat but serializing milliseconds. 17 | @Override 18 | public StringBuffer format(Date date, StringBuffer toAppendTo, FieldPosition fieldPosition) { 19 | String value = ISO8601Utils.format(date, true); 20 | toAppendTo.append(value); 21 | return toAppendTo; 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/client/Configuration.java: -------------------------------------------------------------------------------- 1 | 2 | 3 | package com.docusign.rooms.client; 4 | 5 | 6 | /** 7 | * Configuration class. 8 | * 9 | **/ 10 | public class Configuration { 11 | private static ApiClient defaultApiClient = new ApiClient(); 12 | 13 | /** 14 | * Get the default API client, which would be used when creating API 15 | * instances without providing an API client. 16 | * 17 | * @return Default API client 18 | */ 19 | public static ApiClient getDefaultApiClient() { 20 | return defaultApiClient; 21 | } 22 | 23 | /** 24 | * Set the default API client, which would be used when creating API 25 | * instances without providing an API client. 26 | * 27 | * @param apiClient API client 28 | */ 29 | public static void setDefaultApiClient(ApiClient apiClient) { 30 | defaultApiClient = apiClient; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/ListingType.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | 9 | /** 10 | * Gets or Sets ListingType 11 | */ 12 | public enum ListingType { 13 | 14 | PUBLICRECORDS("PublicRecords"), 15 | 16 | MLS("MLS"); 17 | 18 | private String value; 19 | 20 | ListingType(String value) { 21 | this.value = value; 22 | } 23 | 24 | @JsonValue 25 | public String getValue() { 26 | return value; 27 | } 28 | 29 | @Override 30 | public String toString() { 31 | return String.valueOf(value); 32 | } 33 | 34 | @JsonCreator 35 | public static ListingType fromValue(String value) { 36 | for (ListingType b : ListingType.values()) { 37 | if (b.value.equals(value)) { 38 | return b; 39 | } 40 | } 41 | return null; 42 | } 43 | } 44 | 45 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/ProductVersion.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | 9 | /** 10 | * Gets or Sets ProductVersion 11 | */ 12 | public enum ProductVersion { 13 | 14 | V5("v5"), 15 | 16 | V6("v6"); 17 | 18 | private String value; 19 | 20 | ProductVersion(String value) { 21 | this.value = value; 22 | } 23 | 24 | @JsonValue 25 | public String getValue() { 26 | return value; 27 | } 28 | 29 | @Override 30 | public String toString() { 31 | return String.valueOf(value); 32 | } 33 | 34 | @JsonCreator 35 | public static ProductVersion fromValue(String value) { 36 | for (ProductVersion b : ProductVersion.values()) { 37 | if (b.value.equals(value)) { 38 | return b; 39 | } 40 | } 41 | return null; 42 | } 43 | } 44 | 45 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/AccountStatus.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | 9 | /** 10 | * Gets or Sets AccountStatus 11 | */ 12 | public enum AccountStatus { 13 | 14 | ACTIVE("Active"), 15 | 16 | PENDING("Pending"); 17 | 18 | private String value; 19 | 20 | AccountStatus(String value) { 21 | this.value = value; 22 | } 23 | 24 | @JsonValue 25 | public String getValue() { 26 | return value; 27 | } 28 | 29 | @Override 30 | public String toString() { 31 | return String.valueOf(value); 32 | } 33 | 34 | @JsonCreator 35 | public static AccountStatus fromValue(String value) { 36 | for (AccountStatus b : AccountStatus.values()) { 37 | if (b.value.equals(value)) { 38 | return b; 39 | } 40 | } 41 | return null; 42 | } 43 | } 44 | 45 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/RoomStatus.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | 9 | /** 10 | * Gets or Sets RoomStatus 11 | */ 12 | public enum RoomStatus { 13 | 14 | ACTIVE("Active"), 15 | 16 | PENDING("Pending"), 17 | 18 | CLOSED("Closed"), 19 | 20 | OPEN("Open"); 21 | 22 | private String value; 23 | 24 | RoomStatus(String value) { 25 | this.value = value; 26 | } 27 | 28 | @JsonValue 29 | public String getValue() { 30 | return value; 31 | } 32 | 33 | @Override 34 | public String toString() { 35 | return String.valueOf(value); 36 | } 37 | 38 | @JsonCreator 39 | public static RoomStatus fromValue(String value) { 40 | for (RoomStatus b : RoomStatus.values()) { 41 | if (b.value.equals(value)) { 42 | return b; 43 | } 44 | } 45 | return null; 46 | } 47 | } 48 | 49 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/AccessLevel.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | 9 | /** 10 | * Gets or Sets AccessLevel 11 | */ 12 | public enum AccessLevel { 13 | 14 | CONTRIBUTOR("Contributor"), 15 | 16 | OFFICE("Office"), 17 | 18 | REGION("Region"), 19 | 20 | COMPANY("Company"), 21 | 22 | ADMIN("Admin"); 23 | 24 | private String value; 25 | 26 | AccessLevel(String value) { 27 | this.value = value; 28 | } 29 | 30 | @JsonValue 31 | public String getValue() { 32 | return value; 33 | } 34 | 35 | @Override 36 | public String toString() { 37 | return String.valueOf(value); 38 | } 39 | 40 | @JsonCreator 41 | public static AccessLevel fromValue(String value) { 42 | for (AccessLevel b : AccessLevel.values()) { 43 | if (b.value.equals(value)) { 44 | return b; 45 | } 46 | } 47 | return null; 48 | } 49 | } 50 | 51 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/FieldsCustomDataFilterType.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | 9 | /** 10 | * Gets or Sets FieldsCustomDataFilterType 11 | */ 12 | public enum FieldsCustomDataFilterType { 13 | 14 | NONE("None"), 15 | 16 | ISREQUIREDONCREATE("IsRequiredOnCreate"), 17 | 18 | ISREQUIREDONSUBMIT("IsRequiredOnSubmit"); 19 | 20 | private String value; 21 | 22 | FieldsCustomDataFilterType(String value) { 23 | this.value = value; 24 | } 25 | 26 | @JsonValue 27 | public String getValue() { 28 | return value; 29 | } 30 | 31 | @Override 32 | public String toString() { 33 | return String.valueOf(value); 34 | } 35 | 36 | @JsonCreator 37 | public static FieldsCustomDataFilterType fromValue(String value) { 38 | for (FieldsCustomDataFilterType b : FieldsCustomDataFilterType.values()) { 39 | if (b.value.equals(value)) { 40 | return b; 41 | } 42 | } 43 | return null; 44 | } 45 | } 46 | 47 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2016- DocuSign, Inc. (https://www.docusign.com) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.swagger-codegen-ignore: -------------------------------------------------------------------------------- 1 | # Swagger Codegen Ignore 2 | 3 | # Use this file to prevent files from being overwritten by the generator. 4 | # The patterns follow closely to .gitignore or .dockerignore. 5 | 6 | # As an example, the C# client generator defines ApiClient.cs. 7 | # You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line: 8 | #ApiClient.cs 9 | 10 | # You can match any string of characters against a directory, file or extension with a single asterisk (*): 11 | #foo/*/qux 12 | # The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux 13 | 14 | # You can recursively match patterns against a directory, file or extension with a double asterisk (**): 15 | #foo/**/qux 16 | # This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux 17 | 18 | # You can also negate patterns with an exclamation (!). 19 | # For example, you can ignore all files in a docs folder with the file extension .md: 20 | #docs/*.md 21 | # Then explicitly reverse the ignore rule for a single file: 22 | #!docs/README.md 23 | 24 | # Swagger and Git files 25 | .swagger-codegen-ignore 26 | git_push.sh 27 | 28 | # Project files 29 | LICENSE 30 | gradle* 31 | build.sbt 32 | .travis.yml 33 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/MemberSortingOption.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | 9 | /** 10 | * Gets or Sets MemberSortingOption 11 | */ 12 | public enum MemberSortingOption { 13 | 14 | FIRSTNAMEASC("FirstNameAsc"), 15 | 16 | LASTNAMEASC("LastNameAsc"), 17 | 18 | EMAILASC("EmailAsc"), 19 | 20 | FIRSTNAMEDESC("FirstNameDesc"), 21 | 22 | LASTNAMEDESC("LastNameDesc"), 23 | 24 | EMAILDESC("EmailDesc"); 25 | 26 | private String value; 27 | 28 | MemberSortingOption(String value) { 29 | this.value = value; 30 | } 31 | 32 | @JsonValue 33 | public String getValue() { 34 | return value; 35 | } 36 | 37 | @Override 38 | public String toString() { 39 | return String.valueOf(value); 40 | } 41 | 42 | @JsonCreator 43 | public static MemberSortingOption fromValue(String value) { 44 | for (MemberSortingOption b : MemberSortingOption.values()) { 45 | if (b.value.equals(value)) { 46 | return b; 47 | } 48 | } 49 | return null; 50 | } 51 | } 52 | 53 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/RolesFilterContextTypes.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | 9 | /** 10 | * Gets or Sets RolesFilterContextTypes 11 | */ 12 | public enum RolesFilterContextTypes { 13 | 14 | ALLROLES("AllRoles"), 15 | 16 | ASSIGNABLEROLESBASEDONCOMPANYPERMISSIONS("AssignableRolesBasedOnCompanyPermissions"), 17 | 18 | ASSIGNABLEROLESBASEDONALLPERMISSIONS("AssignableRolesBasedOnAllPermissions"); 19 | 20 | private String value; 21 | 22 | RolesFilterContextTypes(String value) { 23 | this.value = value; 24 | } 25 | 26 | @JsonValue 27 | public String getValue() { 28 | return value; 29 | } 30 | 31 | @Override 32 | public String toString() { 33 | return String.valueOf(value); 34 | } 35 | 36 | @JsonCreator 37 | public static RolesFilterContextTypes fromValue(String value) { 38 | for (RolesFilterContextTypes b : RolesFilterContextTypes.values()) { 39 | if (b.value.equals(value)) { 40 | return b; 41 | } 42 | } 43 | return null; 44 | } 45 | } 46 | 47 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/RoomUserSortingOption.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | 9 | /** 10 | * Gets or Sets RoomUserSortingOption 11 | */ 12 | public enum RoomUserSortingOption { 13 | 14 | FIRSTNAMEASC("FirstNameAsc"), 15 | 16 | LASTNAMEASC("LastNameAsc"), 17 | 18 | EMAILASC("EmailAsc"), 19 | 20 | FIRSTNAMEDESC("FirstNameDesc"), 21 | 22 | LASTNAMEDESC("LastNameDesc"), 23 | 24 | EMAILDESC("EmailDesc"); 25 | 26 | private String value; 27 | 28 | RoomUserSortingOption(String value) { 29 | this.value = value; 30 | } 31 | 32 | @JsonValue 33 | public String getValue() { 34 | return value; 35 | } 36 | 37 | @Override 38 | public String toString() { 39 | return String.valueOf(value); 40 | } 41 | 42 | @JsonCreator 43 | public static RoomUserSortingOption fromValue(String value) { 44 | for (RoomUserSortingOption b : RoomUserSortingOption.values()) { 45 | if (b.value.equals(value)) { 46 | return b; 47 | } 48 | } 49 | return null; 50 | } 51 | } 52 | 53 | -------------------------------------------------------------------------------- /src/test/dist/README.TXT: -------------------------------------------------------------------------------- 1 | ======================== 2 | BUILD OUTPUT DESCRIPTION 3 | ======================== 4 | 5 | When you build an Java application project that has a main class, the IDE 6 | automatically copies all of the JAR 7 | files on the projects classpath to your projects dist/lib folder. The IDE 8 | also adds each of the JAR files to the Class-Path element in the application 9 | JAR files manifest file (MANIFEST.MF). 10 | 11 | To run the project from the command line, go to the dist folder and 12 | type the following: 13 | 14 | java -jar "SdkTests.jar" 15 | 16 | To distribute this project, zip up the dist folder (including the lib folder) 17 | and distribute the ZIP file. 18 | 19 | Notes: 20 | 21 | * If two JAR files on the project classpath have the same name, only the first 22 | JAR file is copied to the lib folder. 23 | * Only JAR files are copied to the lib folder. 24 | If the classpath contains other types of files or folders, these files (folders) 25 | are not copied. 26 | * If a library on the projects classpath also has a Class-Path element 27 | specified in the manifest,the content of the Class-Path element has to be on 28 | the projects runtime path. 29 | * To set a main class in a standard Java project, right-click the project node 30 | in the Projects window and choose Properties. Then click Run and enter the 31 | class name in the Main Class field. Alternatively, you can manually type the 32 | class name in the manifest Main-Class element. 33 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/client/Pair.java: -------------------------------------------------------------------------------- 1 | 2 | 3 | package com.docusign.rooms.client; 4 | 5 | 6 | 7 | /** 8 | * Pair class. 9 | */ 10 | public class Pair { 11 | private String name = ""; 12 | private String value = ""; 13 | 14 | /** 15 | * Pair constructor. 16 | * 17 | * @param name The pair name 18 | * @param value The pair value 19 | */ 20 | public Pair (String name, String value) { 21 | setName(name); 22 | setValue(value); 23 | } 24 | 25 | private void setName(String name) { 26 | if (!isValidString(name)) { 27 | return; 28 | } 29 | 30 | this.name = name; 31 | } 32 | 33 | private void setValue(String value) { 34 | if (!isValidString(value)) { 35 | return; 36 | } 37 | 38 | this.value = value; 39 | } 40 | 41 | /** 42 | * getName method. 43 | * 44 | * @return String 45 | */ 46 | public String getName() { 47 | return this.name; 48 | } 49 | 50 | /** 51 | * getValue method. 52 | * 53 | * @return String 54 | */ 55 | public String getValue() { 56 | return this.value; 57 | } 58 | 59 | private boolean isValidString(String arg) { 60 | if (arg == null) { 61 | return false; 62 | } 63 | 64 | if (arg.trim().isEmpty()) { 65 | return false; 66 | } 67 | 68 | return true; 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/client/ApiResponse.java: -------------------------------------------------------------------------------- 1 | 2 | 3 | package com.docusign.rooms.client; 4 | 5 | import java.util.List; 6 | import java.util.Map; 7 | 8 | /** 9 | * API response returned by API call. 10 | * 11 | * @param The type of data that is deserialized from response body 12 | */ 13 | public class ApiResponse { 14 | private final int statusCode; 15 | private final Map> headers; 16 | private final T data; 17 | 18 | /** 19 | * ApiResponse method. 20 | * 21 | * @param statusCode The status code of HTTP response 22 | * @param headers The headers of HTTP response 23 | */ 24 | public ApiResponse(int statusCode, Map> headers) { 25 | this(statusCode, headers, null); 26 | } 27 | 28 | /** 29 | * ApiResponse method. 30 | * 31 | * @param statusCode The status code of HTTP response 32 | * @param headers The headers of HTTP response 33 | * @param data The object deserialized from response bod 34 | */ 35 | public ApiResponse(int statusCode, Map> headers, T data) { 36 | this.statusCode = statusCode; 37 | this.headers = headers; 38 | this.data = data; 39 | } 40 | 41 | public int getStatusCode() { 42 | return statusCode; 43 | } 44 | 45 | public Map> getHeaders() { 46 | return headers; 47 | } 48 | 49 | public T getData() { 50 | return data; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/client/StringUtil.java: -------------------------------------------------------------------------------- 1 | 2 | 3 | package com.docusign.rooms.client; 4 | 5 | 6 | /** 7 | * StringUtil class. 8 | * 9 | **/ 10 | public class StringUtil { 11 | /** 12 | * Check if the given array contains the given value (with case-insensitive comparison). 13 | * 14 | * @param array The array 15 | * @param value The value to search 16 | * @return true if the array contains the value 17 | */ 18 | public static boolean containsIgnoreCase(String[] array, String value) { 19 | for (String str : array) { 20 | if (value == null && str == null) { 21 | return true; 22 | } 23 | 24 | if (value != null && value.equalsIgnoreCase(str)) { 25 | return true; 26 | } 27 | } 28 | return false; 29 | } 30 | 31 | /** 32 | * Join an array of strings with the given separator. 33 | *

34 | * Note: This might be replaced by utility method from commons-lang or guava someday 35 | * if one of those libraries is added as dependency. 36 | *

37 | * 38 | * @param array The array of strings 39 | * @param separator The separator 40 | * @return the resulting string 41 | */ 42 | public static String join(String[] array, String separator) { 43 | int len = array.length; 44 | if (len == 0) { 45 | return ""; 46 | } 47 | 48 | StringBuilder out = new StringBuilder(); 49 | out.append(array[0]); 50 | for (int i = 1; i < len; i++) { 51 | out.append(separator).append(array[i]); 52 | } 53 | return out.toString(); 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # DocuSign Rooms Java Client Changelog 2 | See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes. 3 | 4 | ## [v1.4.3] - Rooms API v2-1.1.1 - 2023-06-13 5 | ### Changed 6 | - Updated the SDK release version. 7 | - Fixed DateTimeOffset mismatch, causing issues with JSON serialization in dateCreated methods 8 | 9 | ## [v1.4.2] - Rooms API v2-1.1.1 - 2023-05-31 10 | ### Changed 11 | - Jakarta Support enabled 12 | - Updated the SDK release version. 13 | - Fixed Compilation Error Related to io.swagger.v3.oas.annotations.media.Schema; 14 | 15 | ## [v1.4.1] - Rooms API v2-1.1.1 - 2023-05-31 16 | ### Changed 17 | - Jakarta Support enabled 18 | - Updated the SDK release version. 19 | - Fixed Compilation Error Related to io.swagger.v3.oas.annotations.media.Schema; 20 | 21 | ## [v1.4.0] - Rooms API v2-1.1.1 - 2023-05-30 22 | ### Changed 23 | - Jakarta Support enabled 24 | - Updated the SDK release version. 25 | 26 | ## [v1.3.0] - Rooms API v2-1.1.0 - 2023-01-30 27 | ### Changed 28 | - Added support for version v2-1.1.0 of the DocuSign Rooms API. 29 | - Updated the SDK release version. 30 | 31 | ## [1.2.0-RC1] - Rooms API v2-1.0.9 - 2021-10-04 32 | ### Changed 33 | - Added support for version v2-1.0.9 of the DocuSign Rooms API. 34 | - Updated the SDK release version. 35 | 36 | 37 | ## [v1.1.0] - Rooms API v2-1.0.8 - 2021-03-25 38 | ### Changed 39 | - Added support for version v2-1.0.8 of the DocuSign Rooms API. 40 | - Updated the SDK release version. 41 | 42 | ## [v1.0.0] - Rooms API v2-1.0.7 - 2020-10-19 43 | ### Changed 44 | - First GA version of Rooms API. 45 | 46 | ## [v1.0.0-BETA] - Rooms API v2-1.0.7 - 2020-09-28 47 | ### Added 48 | - Added first beta version of the DocuSign Rooms API. 49 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/client/auth/HttpBasicAuth.java: -------------------------------------------------------------------------------- 1 | 2 | 3 | package com.docusign.rooms.client.auth; 4 | 5 | import com.docusign.rooms.client.Pair; 6 | 7 | import java.util.Base64; 8 | import java.nio.charset.StandardCharsets; 9 | 10 | import java.util.Map; 11 | import java.util.List; 12 | 13 | 14 | 15 | 16 | /** 17 | * HttpBasicAuth class. 18 | * 19 | */ 20 | public class HttpBasicAuth implements Authentication { 21 | private String username; 22 | private String password; 23 | 24 | /** 25 | * getUsername method. 26 | * 27 | * @return String 28 | */ 29 | public String getUsername() { 30 | return username; 31 | } 32 | 33 | /** 34 | * setUsername method. 35 | * 36 | * @param username Sets username 37 | */ 38 | public void setUsername(String username) { 39 | this.username = username; 40 | } 41 | 42 | /** 43 | * getPassword method. 44 | * 45 | * @return String 46 | */ 47 | public String getPassword() { 48 | return password; 49 | } 50 | 51 | /** 52 | * setPassword method. 53 | * 54 | * @param password Sets password 55 | */ 56 | public void setPassword(String password) { 57 | this.password = password; 58 | } 59 | 60 | /** 61 | * applyToParams method. 62 | * 63 | * @param queryParams The query params 64 | * @param headerParams The header params 65 | */ 66 | @Override 67 | public void applyToParams(List queryParams, Map headerParams) { 68 | if (username == null && password == null) { 69 | return; 70 | } 71 | String str = (username == null ? "" : username) + ":" + (password == null ? "" : password); 72 | headerParams.put("Authorization", "Basic " + Base64.getEncoder().encodeToString(str.getBytes(StandardCharsets.UTF_8))); 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/client/JSON.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.client; 2 | 3 | import com.fasterxml.jackson.annotation.*; 4 | import com.fasterxml.jackson.databind.*; 5 | 6 | import java.text.DateFormat; 7 | 8 | import jakarta.ws.rs.ext.ContextResolver; 9 | 10 | 11 | 12 | /** 13 | * JSON Class. 14 | * 15 | **/ 16 | 17 | public class JSON implements ContextResolver { 18 | private ObjectMapper mapper; 19 | 20 | /** 21 | * JSON Class constructor doc. 22 | * 23 | **/ 24 | public JSON() { 25 | mapper = new ObjectMapper(); 26 | mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); 27 | mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); 28 | mapper.configure(DeserializationFeature.FAIL_ON_INVALID_SUBTYPE, false); 29 | mapper.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS); 30 | mapper.enable(SerializationFeature.WRITE_ENUMS_USING_TO_STRING); 31 | mapper.enable(DeserializationFeature.READ_ENUMS_USING_TO_STRING); 32 | mapper.setDateFormat(new RFC3339DateFormat()); 33 | } 34 | 35 | /** 36 | * Returns the current object mapper used for JSON serialization/deserialization. 37 | *

38 | * Note: If you make changes to the object mapper, remember to set it back via 39 | * setObjectMapper in order to trigger HTTP client rebuilding. 40 | *

41 | * @return Object mapper 42 | */ 43 | public ObjectMapper getObjectMapper() { 44 | return mapper; 45 | } 46 | 47 | public JSON setObjectMapper(ObjectMapper mapper) { 48 | this.mapper = mapper; 49 | return this; 50 | } 51 | 52 | /** 53 | * Set the date format for JSON (de)serialization with Date properties. 54 | * @param dateFormat Date format 55 | */ 56 | public void setDateFormat(DateFormat dateFormat) { 57 | mapper.setDateFormat(dateFormat); 58 | } 59 | 60 | @Override 61 | public ObjectMapper getContext(Class type) { 62 | return mapper; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/RoomPicture.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * RoomPicture. 12 | * 13 | */ 14 | 15 | public class RoomPicture { 16 | @JsonProperty("url") 17 | private String url = null; 18 | 19 | 20 | /** 21 | * url. 22 | * 23 | * @return RoomPicture 24 | **/ 25 | public RoomPicture url(String url) { 26 | this.url = url; 27 | return this; 28 | } 29 | 30 | /** 31 | * Get url. 32 | * @return url 33 | **/ 34 | @Schema(description = "") 35 | public String getUrl() { 36 | return url; 37 | } 38 | 39 | /** 40 | * setUrl. 41 | **/ 42 | public void setUrl(String url) { 43 | this.url = url; 44 | } 45 | 46 | 47 | /** 48 | * Compares objects. 49 | * 50 | * @return true or false depending on comparison result. 51 | */ 52 | @Override 53 | public boolean equals(java.lang.Object o) { 54 | if (this == o) { 55 | return true; 56 | } 57 | if (o == null || getClass() != o.getClass()) { 58 | return false; 59 | } 60 | RoomPicture roomPicture = (RoomPicture) o; 61 | return Objects.equals(this.url, roomPicture.url); 62 | } 63 | 64 | /** 65 | * Returns the HashCode. 66 | */ 67 | @Override 68 | public int hashCode() { 69 | return Objects.hash(url); 70 | } 71 | 72 | 73 | /** 74 | * Converts the given object to string. 75 | */ 76 | @Override 77 | public String toString() { 78 | StringBuilder sb = new StringBuilder(); 79 | sb.append("class RoomPicture {\n"); 80 | 81 | sb.append(" url: ").append(toIndentedString(url)).append("\n"); 82 | sb.append("}"); 83 | return sb.toString(); 84 | } 85 | 86 | /** 87 | * Convert the given object to string with each line indented by 4 spaces 88 | * (except the first line). 89 | */ 90 | private String toIndentedString(java.lang.Object o) { 91 | if (o == null) { 92 | return "null"; 93 | } 94 | return o.toString().replace("\n", "\n "); 95 | } 96 | 97 | } 98 | 99 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/NullableFieldData.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * NullableFieldData 12 | */ 13 | 14 | public class NullableFieldData { 15 | @JsonProperty("data") 16 | private java.util.Map data = null; 17 | 18 | public NullableFieldData data(java.util.Map data) { 19 | this.data = data; 20 | return this; 21 | } 22 | 23 | public NullableFieldData putDataItem(String key, Object dataItem) { 24 | if (this.data == null) { 25 | this.data = new java.util.HashMap(); 26 | } 27 | this.data.put(key, dataItem); 28 | return this; 29 | } 30 | 31 | /** 32 | * Get data 33 | * @return data 34 | **/ 35 | @Schema(description = "") 36 | public java.util.Map getData() { 37 | return data; 38 | } 39 | 40 | public void setData(java.util.Map data) { 41 | this.data = data; 42 | } 43 | 44 | 45 | @Override 46 | public boolean equals(java.lang.Object o) { 47 | if (this == o) { 48 | return true; 49 | } 50 | if (o == null || getClass() != o.getClass()) { 51 | return false; 52 | } 53 | NullableFieldData nullableFieldData = (NullableFieldData) o; 54 | return Objects.equals(this.data, nullableFieldData.data); 55 | } 56 | 57 | @Override 58 | public int hashCode() { 59 | return Objects.hash(data); 60 | } 61 | 62 | 63 | @Override 64 | public String toString() { 65 | StringBuilder sb = new StringBuilder(); 66 | sb.append("class NullableFieldData {\n"); 67 | 68 | sb.append(" data: ").append(toIndentedString(data)).append("\n"); 69 | sb.append("}"); 70 | return sb.toString(); 71 | } 72 | 73 | /** 74 | * Convert the given object to string with each line indented by 4 spaces 75 | * (except the first line). 76 | */ 77 | private String toIndentedString(java.lang.Object o) { 78 | if (o == null) { 79 | return "null"; 80 | } 81 | return o.toString().replace("\n", "\n "); 82 | } 83 | 84 | } 85 | 86 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/ESignPermissionProfileList.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.ESignPermissionProfile; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * ESignPermissionProfileList. 13 | * 14 | */ 15 | 16 | public class ESignPermissionProfileList { 17 | @JsonProperty("permissionProfiles") 18 | private java.util.List permissionProfiles = null; 19 | 20 | /** 21 | * Get permissionProfiles. 22 | * @return permissionProfiles 23 | **/ 24 | @Schema(description = "") 25 | public java.util.List getPermissionProfiles() { 26 | return permissionProfiles; 27 | } 28 | 29 | 30 | /** 31 | * Compares objects. 32 | * 33 | * @return true or false depending on comparison result. 34 | */ 35 | @Override 36 | public boolean equals(java.lang.Object o) { 37 | if (this == o) { 38 | return true; 39 | } 40 | if (o == null || getClass() != o.getClass()) { 41 | return false; 42 | } 43 | ESignPermissionProfileList esignPermissionProfileList = (ESignPermissionProfileList) o; 44 | return Objects.equals(this.permissionProfiles, esignPermissionProfileList.permissionProfiles); 45 | } 46 | 47 | /** 48 | * Returns the HashCode. 49 | */ 50 | @Override 51 | public int hashCode() { 52 | return Objects.hash(permissionProfiles); 53 | } 54 | 55 | 56 | /** 57 | * Converts the given object to string. 58 | */ 59 | @Override 60 | public String toString() { 61 | StringBuilder sb = new StringBuilder(); 62 | sb.append("class ESignPermissionProfileList {\n"); 63 | 64 | sb.append(" permissionProfiles: ").append(toIndentedString(permissionProfiles)).append("\n"); 65 | sb.append("}"); 66 | return sb.toString(); 67 | } 68 | 69 | /** 70 | * Convert the given object to string with each line indented by 4 spaces 71 | * (except the first line). 72 | */ 73 | private String toIndentedString(java.lang.Object o) { 74 | if (o == null) { 75 | return "null"; 76 | } 77 | return o.toString().replace("\n", "\n "); 78 | } 79 | 80 | } 81 | 82 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/FormForAdd.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * FormForAdd. 12 | * 13 | */ 14 | 15 | public class FormForAdd { 16 | @JsonProperty("formId") 17 | private java.util.UUID formId = null; 18 | 19 | 20 | /** 21 | * formId. 22 | * 23 | * @return FormForAdd 24 | **/ 25 | public FormForAdd formId(java.util.UUID formId) { 26 | this.formId = formId; 27 | return this; 28 | } 29 | 30 | /** 31 | * Get formId. 32 | * @return formId 33 | **/ 34 | @Schema(required = true, description = "") 35 | public java.util.UUID getFormId() { 36 | return formId; 37 | } 38 | 39 | /** 40 | * setFormId. 41 | **/ 42 | public void setFormId(java.util.UUID formId) { 43 | this.formId = formId; 44 | } 45 | 46 | 47 | /** 48 | * Compares objects. 49 | * 50 | * @return true or false depending on comparison result. 51 | */ 52 | @Override 53 | public boolean equals(java.lang.Object o) { 54 | if (this == o) { 55 | return true; 56 | } 57 | if (o == null || getClass() != o.getClass()) { 58 | return false; 59 | } 60 | FormForAdd formForAdd = (FormForAdd) o; 61 | return Objects.equals(this.formId, formForAdd.formId); 62 | } 63 | 64 | /** 65 | * Returns the HashCode. 66 | */ 67 | @Override 68 | public int hashCode() { 69 | return Objects.hash(formId); 70 | } 71 | 72 | 73 | /** 74 | * Converts the given object to string. 75 | */ 76 | @Override 77 | public String toString() { 78 | StringBuilder sb = new StringBuilder(); 79 | sb.append("class FormForAdd {\n"); 80 | 81 | sb.append(" formId: ").append(toIndentedString(formId)).append("\n"); 82 | sb.append("}"); 83 | return sb.toString(); 84 | } 85 | 86 | /** 87 | * Convert the given object to string with each line indented by 4 spaces 88 | * (except the first line). 89 | */ 90 | private String toIndentedString(java.lang.Object o) { 91 | if (o == null) { 92 | return "null"; 93 | } 94 | return o.toString().replace("\n", "\n "); 95 | } 96 | 97 | } 98 | 99 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/FormGroupForCreate.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * FormGroupForCreate. 12 | * 13 | */ 14 | 15 | public class FormGroupForCreate { 16 | @JsonProperty("name") 17 | private String name = null; 18 | 19 | 20 | /** 21 | * name. 22 | * 23 | * @return FormGroupForCreate 24 | **/ 25 | public FormGroupForCreate name(String name) { 26 | this.name = name; 27 | return this; 28 | } 29 | 30 | /** 31 | * Get name. 32 | * @return name 33 | **/ 34 | @Schema(required = true, description = "") 35 | public String getName() { 36 | return name; 37 | } 38 | 39 | /** 40 | * setName. 41 | **/ 42 | public void setName(String name) { 43 | this.name = name; 44 | } 45 | 46 | 47 | /** 48 | * Compares objects. 49 | * 50 | * @return true or false depending on comparison result. 51 | */ 52 | @Override 53 | public boolean equals(java.lang.Object o) { 54 | if (this == o) { 55 | return true; 56 | } 57 | if (o == null || getClass() != o.getClass()) { 58 | return false; 59 | } 60 | FormGroupForCreate formGroupForCreate = (FormGroupForCreate) o; 61 | return Objects.equals(this.name, formGroupForCreate.name); 62 | } 63 | 64 | /** 65 | * Returns the HashCode. 66 | */ 67 | @Override 68 | public int hashCode() { 69 | return Objects.hash(name); 70 | } 71 | 72 | 73 | /** 74 | * Converts the given object to string. 75 | */ 76 | @Override 77 | public String toString() { 78 | StringBuilder sb = new StringBuilder(); 79 | sb.append("class FormGroupForCreate {\n"); 80 | 81 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 82 | sb.append("}"); 83 | return sb.toString(); 84 | } 85 | 86 | /** 87 | * Convert the given object to string with each line indented by 4 spaces 88 | * (except the first line). 89 | */ 90 | private String toIndentedString(java.lang.Object o) { 91 | if (o == null) { 92 | return "null"; 93 | } 94 | return o.toString().replace("\n", "\n "); 95 | } 96 | 97 | } 98 | 99 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/FormGroupForUpdate.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * FormGroupForUpdate. 12 | * 13 | */ 14 | 15 | public class FormGroupForUpdate { 16 | @JsonProperty("name") 17 | private String name = null; 18 | 19 | 20 | /** 21 | * name. 22 | * 23 | * @return FormGroupForUpdate 24 | **/ 25 | public FormGroupForUpdate name(String name) { 26 | this.name = name; 27 | return this; 28 | } 29 | 30 | /** 31 | * Get name. 32 | * @return name 33 | **/ 34 | @Schema(required = true, description = "") 35 | public String getName() { 36 | return name; 37 | } 38 | 39 | /** 40 | * setName. 41 | **/ 42 | public void setName(String name) { 43 | this.name = name; 44 | } 45 | 46 | 47 | /** 48 | * Compares objects. 49 | * 50 | * @return true or false depending on comparison result. 51 | */ 52 | @Override 53 | public boolean equals(java.lang.Object o) { 54 | if (this == o) { 55 | return true; 56 | } 57 | if (o == null || getClass() != o.getClass()) { 58 | return false; 59 | } 60 | FormGroupForUpdate formGroupForUpdate = (FormGroupForUpdate) o; 61 | return Objects.equals(this.name, formGroupForUpdate.name); 62 | } 63 | 64 | /** 65 | * Returns the HashCode. 66 | */ 67 | @Override 68 | public int hashCode() { 69 | return Objects.hash(name); 70 | } 71 | 72 | 73 | /** 74 | * Converts the given object to string. 75 | */ 76 | @Override 77 | public String toString() { 78 | StringBuilder sb = new StringBuilder(); 79 | sb.append("class FormGroupForUpdate {\n"); 80 | 81 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 82 | sb.append("}"); 83 | return sb.toString(); 84 | } 85 | 86 | /** 87 | * Convert the given object to string with each line indented by 4 spaces 88 | * (except the first line). 89 | */ 90 | private String toIndentedString(java.lang.Object o) { 91 | if (o == null) { 92 | return "null"; 93 | } 94 | return o.toString().replace("\n", "\n "); 95 | } 96 | 97 | } 98 | 99 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/ExternalFormFillSession.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * ExternalFormFillSession. 12 | * 13 | */ 14 | 15 | public class ExternalFormFillSession { 16 | @JsonProperty("url") 17 | private String url = null; 18 | 19 | 20 | /** 21 | * url. 22 | * 23 | * @return ExternalFormFillSession 24 | **/ 25 | public ExternalFormFillSession url(String url) { 26 | this.url = url; 27 | return this; 28 | } 29 | 30 | /** 31 | * Get url. 32 | * @return url 33 | **/ 34 | @Schema(description = "") 35 | public String getUrl() { 36 | return url; 37 | } 38 | 39 | /** 40 | * setUrl. 41 | **/ 42 | public void setUrl(String url) { 43 | this.url = url; 44 | } 45 | 46 | 47 | /** 48 | * Compares objects. 49 | * 50 | * @return true or false depending on comparison result. 51 | */ 52 | @Override 53 | public boolean equals(java.lang.Object o) { 54 | if (this == o) { 55 | return true; 56 | } 57 | if (o == null || getClass() != o.getClass()) { 58 | return false; 59 | } 60 | ExternalFormFillSession externalFormFillSession = (ExternalFormFillSession) o; 61 | return Objects.equals(this.url, externalFormFillSession.url); 62 | } 63 | 64 | /** 65 | * Returns the HashCode. 66 | */ 67 | @Override 68 | public int hashCode() { 69 | return Objects.hash(url); 70 | } 71 | 72 | 73 | /** 74 | * Converts the given object to string. 75 | */ 76 | @Override 77 | public String toString() { 78 | StringBuilder sb = new StringBuilder(); 79 | sb.append("class ExternalFormFillSession {\n"); 80 | 81 | sb.append(" url: ").append(toIndentedString(url)).append("\n"); 82 | sb.append("}"); 83 | return sb.toString(); 84 | } 85 | 86 | /** 87 | * Convert the given object to string with each line indented by 4 spaces 88 | * (except the first line). 89 | */ 90 | private String toIndentedString(java.lang.Object o) { 91 | if (o == null) { 92 | return "null"; 93 | } 94 | return o.toString().replace("\n", "\n "); 95 | } 96 | 97 | } 98 | 99 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/LockedOutDetails.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * LockedOutDetails. 12 | * 13 | */ 14 | 15 | public class LockedOutDetails { 16 | @JsonProperty("reason") 17 | private String reason = null; 18 | 19 | 20 | /** 21 | * reason. 22 | * 23 | * @return LockedOutDetails 24 | **/ 25 | public LockedOutDetails reason(String reason) { 26 | this.reason = reason; 27 | return this; 28 | } 29 | 30 | /** 31 | * Get reason. 32 | * @return reason 33 | **/ 34 | @Schema(required = true, description = "") 35 | public String getReason() { 36 | return reason; 37 | } 38 | 39 | /** 40 | * setReason. 41 | **/ 42 | public void setReason(String reason) { 43 | this.reason = reason; 44 | } 45 | 46 | 47 | /** 48 | * Compares objects. 49 | * 50 | * @return true or false depending on comparison result. 51 | */ 52 | @Override 53 | public boolean equals(java.lang.Object o) { 54 | if (this == o) { 55 | return true; 56 | } 57 | if (o == null || getClass() != o.getClass()) { 58 | return false; 59 | } 60 | LockedOutDetails lockedOutDetails = (LockedOutDetails) o; 61 | return Objects.equals(this.reason, lockedOutDetails.reason); 62 | } 63 | 64 | /** 65 | * Returns the HashCode. 66 | */ 67 | @Override 68 | public int hashCode() { 69 | return Objects.hash(reason); 70 | } 71 | 72 | 73 | /** 74 | * Converts the given object to string. 75 | */ 76 | @Override 77 | public String toString() { 78 | StringBuilder sb = new StringBuilder(); 79 | sb.append("class LockedOutDetails {\n"); 80 | 81 | sb.append(" reason: ").append(toIndentedString(reason)).append("\n"); 82 | sb.append("}"); 83 | return sb.toString(); 84 | } 85 | 86 | /** 87 | * Convert the given object to string with each line indented by 4 spaces 88 | * (except the first line). 89 | */ 90 | private String toIndentedString(java.lang.Object o) { 91 | if (o == null) { 92 | return "null"; 93 | } 94 | return o.toString().replace("\n", "\n "); 95 | } 96 | 97 | } 98 | 99 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/DesignatedOffice.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * DesignatedOffice. 12 | * 13 | */ 14 | 15 | public class DesignatedOffice { 16 | @JsonProperty("officeId") 17 | private Integer officeId = null; 18 | 19 | 20 | /** 21 | * officeId. 22 | * 23 | * @return DesignatedOffice 24 | **/ 25 | public DesignatedOffice officeId(Integer officeId) { 26 | this.officeId = officeId; 27 | return this; 28 | } 29 | 30 | /** 31 | * Get officeId. 32 | * @return officeId 33 | **/ 34 | @Schema(required = true, description = "") 35 | public Integer getOfficeId() { 36 | return officeId; 37 | } 38 | 39 | /** 40 | * setOfficeId. 41 | **/ 42 | public void setOfficeId(Integer officeId) { 43 | this.officeId = officeId; 44 | } 45 | 46 | 47 | /** 48 | * Compares objects. 49 | * 50 | * @return true or false depending on comparison result. 51 | */ 52 | @Override 53 | public boolean equals(java.lang.Object o) { 54 | if (this == o) { 55 | return true; 56 | } 57 | if (o == null || getClass() != o.getClass()) { 58 | return false; 59 | } 60 | DesignatedOffice designatedOffice = (DesignatedOffice) o; 61 | return Objects.equals(this.officeId, designatedOffice.officeId); 62 | } 63 | 64 | /** 65 | * Returns the HashCode. 66 | */ 67 | @Override 68 | public int hashCode() { 69 | return Objects.hash(officeId); 70 | } 71 | 72 | 73 | /** 74 | * Converts the given object to string. 75 | */ 76 | @Override 77 | public String toString() { 78 | StringBuilder sb = new StringBuilder(); 79 | sb.append("class DesignatedOffice {\n"); 80 | 81 | sb.append(" officeId: ").append(toIndentedString(officeId)).append("\n"); 82 | sb.append("}"); 83 | return sb.toString(); 84 | } 85 | 86 | /** 87 | * Convert the given object to string with each line indented by 4 spaces 88 | * (except the first line). 89 | */ 90 | private String toIndentedString(java.lang.Object o) { 91 | if (o == null) { 92 | return "null"; 93 | } 94 | return o.toString().replace("\n", "\n "); 95 | } 96 | 97 | } 98 | 99 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/DesignatedRegion.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * DesignatedRegion. 12 | * 13 | */ 14 | 15 | public class DesignatedRegion { 16 | @JsonProperty("regionId") 17 | private Integer regionId = null; 18 | 19 | 20 | /** 21 | * regionId. 22 | * 23 | * @return DesignatedRegion 24 | **/ 25 | public DesignatedRegion regionId(Integer regionId) { 26 | this.regionId = regionId; 27 | return this; 28 | } 29 | 30 | /** 31 | * Get regionId. 32 | * @return regionId 33 | **/ 34 | @Schema(required = true, description = "") 35 | public Integer getRegionId() { 36 | return regionId; 37 | } 38 | 39 | /** 40 | * setRegionId. 41 | **/ 42 | public void setRegionId(Integer regionId) { 43 | this.regionId = regionId; 44 | } 45 | 46 | 47 | /** 48 | * Compares objects. 49 | * 50 | * @return true or false depending on comparison result. 51 | */ 52 | @Override 53 | public boolean equals(java.lang.Object o) { 54 | if (this == o) { 55 | return true; 56 | } 57 | if (o == null || getClass() != o.getClass()) { 58 | return false; 59 | } 60 | DesignatedRegion designatedRegion = (DesignatedRegion) o; 61 | return Objects.equals(this.regionId, designatedRegion.regionId); 62 | } 63 | 64 | /** 65 | * Returns the HashCode. 66 | */ 67 | @Override 68 | public int hashCode() { 69 | return Objects.hash(regionId); 70 | } 71 | 72 | 73 | /** 74 | * Converts the given object to string. 75 | */ 76 | @Override 77 | public String toString() { 78 | StringBuilder sb = new StringBuilder(); 79 | sb.append("class DesignatedRegion {\n"); 80 | 81 | sb.append(" regionId: ").append(toIndentedString(regionId)).append("\n"); 82 | sb.append("}"); 83 | return sb.toString(); 84 | } 85 | 86 | /** 87 | * Convert the given object to string with each line indented by 4 spaces 88 | * (except the first line). 89 | */ 90 | private String toIndentedString(java.lang.Object o) { 91 | if (o == null) { 92 | return "null"; 93 | } 94 | return o.toString().replace("\n", "\n "); 95 | } 96 | 97 | } 98 | 99 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/DocumentUserForCreate.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * DocumentUserForCreate. 12 | * 13 | */ 14 | 15 | public class DocumentUserForCreate { 16 | @JsonProperty("userId") 17 | private Integer userId = null; 18 | 19 | 20 | /** 21 | * userId. 22 | * 23 | * @return DocumentUserForCreate 24 | **/ 25 | public DocumentUserForCreate userId(Integer userId) { 26 | this.userId = userId; 27 | return this; 28 | } 29 | 30 | /** 31 | * Get userId. 32 | * @return userId 33 | **/ 34 | @Schema(required = true, description = "") 35 | public Integer getUserId() { 36 | return userId; 37 | } 38 | 39 | /** 40 | * setUserId. 41 | **/ 42 | public void setUserId(Integer userId) { 43 | this.userId = userId; 44 | } 45 | 46 | 47 | /** 48 | * Compares objects. 49 | * 50 | * @return true or false depending on comparison result. 51 | */ 52 | @Override 53 | public boolean equals(java.lang.Object o) { 54 | if (this == o) { 55 | return true; 56 | } 57 | if (o == null || getClass() != o.getClass()) { 58 | return false; 59 | } 60 | DocumentUserForCreate documentUserForCreate = (DocumentUserForCreate) o; 61 | return Objects.equals(this.userId, documentUserForCreate.userId); 62 | } 63 | 64 | /** 65 | * Returns the HashCode. 66 | */ 67 | @Override 68 | public int hashCode() { 69 | return Objects.hash(userId); 70 | } 71 | 72 | 73 | /** 74 | * Converts the given object to string. 75 | */ 76 | @Override 77 | public String toString() { 78 | StringBuilder sb = new StringBuilder(); 79 | sb.append("class DocumentUserForCreate {\n"); 80 | 81 | sb.append(" userId: ").append(toIndentedString(userId)).append("\n"); 82 | sb.append("}"); 83 | return sb.toString(); 84 | } 85 | 86 | /** 87 | * Convert the given object to string with each line indented by 4 spaces 88 | * (except the first line). 89 | */ 90 | private String toIndentedString(java.lang.Object o) { 91 | if (o == null) { 92 | return "null"; 93 | } 94 | return o.toString().replace("\n", "\n "); 95 | } 96 | 97 | } 98 | 99 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/Envelope.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * Envelope. 12 | * 13 | */ 14 | 15 | public class Envelope { 16 | @JsonProperty("eSignEnvelopeId") 17 | private String eSignEnvelopeId = null; 18 | 19 | 20 | /** 21 | * eSignEnvelopeId. 22 | * 23 | * @return Envelope 24 | **/ 25 | public Envelope eSignEnvelopeId(String eSignEnvelopeId) { 26 | this.eSignEnvelopeId = eSignEnvelopeId; 27 | return this; 28 | } 29 | 30 | /** 31 | * Get eSignEnvelopeId. 32 | * @return eSignEnvelopeId 33 | **/ 34 | @Schema(description = "") 35 | public String getESignEnvelopeId() { 36 | return eSignEnvelopeId; 37 | } 38 | 39 | /** 40 | * setESignEnvelopeId. 41 | **/ 42 | public void setESignEnvelopeId(String eSignEnvelopeId) { 43 | this.eSignEnvelopeId = eSignEnvelopeId; 44 | } 45 | 46 | 47 | /** 48 | * Compares objects. 49 | * 50 | * @return true or false depending on comparison result. 51 | */ 52 | @Override 53 | public boolean equals(java.lang.Object o) { 54 | if (this == o) { 55 | return true; 56 | } 57 | if (o == null || getClass() != o.getClass()) { 58 | return false; 59 | } 60 | Envelope envelope = (Envelope) o; 61 | return Objects.equals(this.eSignEnvelopeId, envelope.eSignEnvelopeId); 62 | } 63 | 64 | /** 65 | * Returns the HashCode. 66 | */ 67 | @Override 68 | public int hashCode() { 69 | return Objects.hash(eSignEnvelopeId); 70 | } 71 | 72 | 73 | /** 74 | * Converts the given object to string. 75 | */ 76 | @Override 77 | public String toString() { 78 | StringBuilder sb = new StringBuilder(); 79 | sb.append("class Envelope {\n"); 80 | 81 | sb.append(" eSignEnvelopeId: ").append(toIndentedString(eSignEnvelopeId)).append("\n"); 82 | sb.append("}"); 83 | return sb.toString(); 84 | } 85 | 86 | /** 87 | * Convert the given object to string with each line indented by 4 spaces 88 | * (except the first line). 89 | */ 90 | private String toIndentedString(java.lang.Object o) { 91 | if (o == null) { 92 | return "null"; 93 | } 94 | return o.toString().replace("\n", "\n "); 95 | } 96 | 97 | } 98 | 99 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/DependsOn.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * DependsOn. 12 | * 13 | */ 14 | 15 | public class DependsOn { 16 | @JsonProperty("actionType") 17 | private String actionType = null; 18 | 19 | @JsonProperty("parentApiName") 20 | private String parentApiName = null; 21 | 22 | /** 23 | * Get actionType. 24 | * @return actionType 25 | **/ 26 | @Schema(description = "") 27 | public String getActionType() { 28 | return actionType; 29 | } 30 | 31 | /** 32 | * Get parentApiName. 33 | * @return parentApiName 34 | **/ 35 | @Schema(description = "") 36 | public String getParentApiName() { 37 | return parentApiName; 38 | } 39 | 40 | 41 | /** 42 | * Compares objects. 43 | * 44 | * @return true or false depending on comparison result. 45 | */ 46 | @Override 47 | public boolean equals(java.lang.Object o) { 48 | if (this == o) { 49 | return true; 50 | } 51 | if (o == null || getClass() != o.getClass()) { 52 | return false; 53 | } 54 | DependsOn dependsOn = (DependsOn) o; 55 | return Objects.equals(this.actionType, dependsOn.actionType) && 56 | Objects.equals(this.parentApiName, dependsOn.parentApiName); 57 | } 58 | 59 | /** 60 | * Returns the HashCode. 61 | */ 62 | @Override 63 | public int hashCode() { 64 | return Objects.hash(actionType, parentApiName); 65 | } 66 | 67 | 68 | /** 69 | * Converts the given object to string. 70 | */ 71 | @Override 72 | public String toString() { 73 | StringBuilder sb = new StringBuilder(); 74 | sb.append("class DependsOn {\n"); 75 | 76 | sb.append(" actionType: ").append(toIndentedString(actionType)).append("\n"); 77 | sb.append(" parentApiName: ").append(toIndentedString(parentApiName)).append("\n"); 78 | sb.append("}"); 79 | return sb.toString(); 80 | } 81 | 82 | /** 83 | * Convert the given object to string with each line indented by 4 spaces 84 | * (except the first line). 85 | */ 86 | private String toIndentedString(java.lang.Object o) { 87 | if (o == null) { 88 | return "null"; 89 | } 90 | return o.toString().replace("\n", "\n "); 91 | } 92 | 93 | } 94 | 95 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/client/auth/ApiKeyAuth.java: -------------------------------------------------------------------------------- 1 | 2 | 3 | package com.docusign.rooms.client.auth; 4 | 5 | import com.docusign.rooms.client.Pair; 6 | 7 | import java.util.Map; 8 | import java.util.List; 9 | 10 | 11 | /** 12 | * ApiKeyAuth class. 13 | * 14 | */ 15 | public class ApiKeyAuth implements Authentication { 16 | private final String location; 17 | private final String paramName; 18 | 19 | private String apiKey; 20 | private String apiKeyPrefix; 21 | 22 | /** 23 | * ApiKeyAuth constructor. 24 | * 25 | * @param location Sets location 26 | * @param paramName Sets paramName 27 | */ 28 | public ApiKeyAuth(String location, String paramName) { 29 | this.location = location; 30 | this.paramName = paramName; 31 | } 32 | 33 | /** 34 | * getLocation method. 35 | * 36 | * @return String 37 | */ 38 | public String getLocation() { 39 | return location; 40 | } 41 | 42 | /** 43 | * getParamName method. 44 | * 45 | * @return String 46 | */ 47 | public String getParamName() { 48 | return paramName; 49 | } 50 | 51 | /** 52 | * getApiKey method. 53 | * 54 | * @return String 55 | */ 56 | public String getApiKey() { 57 | return apiKey; 58 | } 59 | 60 | /** 61 | * setApiKey method. 62 | * 63 | * @param apiKey The apiKey 64 | */ 65 | public void setApiKey(String apiKey) { 66 | this.apiKey = apiKey; 67 | } 68 | 69 | /** 70 | * getApiKeyPrefix method. 71 | * 72 | * @return String 73 | */ 74 | public String getApiKeyPrefix() { 75 | return apiKeyPrefix; 76 | } 77 | 78 | /** 79 | * setApiKeyPrefix method. 80 | * 81 | * @param apiKeyPrefix The apiKeyPrefix 82 | */ 83 | public void setApiKeyPrefix(String apiKeyPrefix) { 84 | this.apiKeyPrefix = apiKeyPrefix; 85 | } 86 | 87 | /** 88 | * applyToParams method. 89 | * 90 | * @param queryParams The query params 91 | * @param headerParams The header params 92 | */ 93 | @Override 94 | public void applyToParams(List queryParams, Map headerParams) { 95 | if (apiKey == null) { 96 | return; 97 | } 98 | String value; 99 | if (apiKeyPrefix != null) { 100 | value = apiKeyPrefix + " " + apiKey; 101 | } else { 102 | value = apiKey; 103 | } 104 | if ("query".equals(location)) { 105 | queryParams.add(new Pair(paramName, value)); 106 | } else if ("header".equals(location)) { 107 | headerParams.put(paramName, value); 108 | } 109 | } 110 | } 111 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/UserForUpdate.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * UserForUpdate. 12 | * 13 | */ 14 | 15 | public class UserForUpdate { 16 | @JsonProperty("defaultOfficeId") 17 | private Integer defaultOfficeId = null; 18 | 19 | 20 | /** 21 | * defaultOfficeId. 22 | * 23 | * @return UserForUpdate 24 | **/ 25 | public UserForUpdate defaultOfficeId(Integer defaultOfficeId) { 26 | this.defaultOfficeId = defaultOfficeId; 27 | return this; 28 | } 29 | 30 | /** 31 | * Get defaultOfficeId. 32 | * @return defaultOfficeId 33 | **/ 34 | @Schema(required = true, description = "") 35 | public Integer getDefaultOfficeId() { 36 | return defaultOfficeId; 37 | } 38 | 39 | /** 40 | * setDefaultOfficeId. 41 | **/ 42 | public void setDefaultOfficeId(Integer defaultOfficeId) { 43 | this.defaultOfficeId = defaultOfficeId; 44 | } 45 | 46 | 47 | /** 48 | * Compares objects. 49 | * 50 | * @return true or false depending on comparison result. 51 | */ 52 | @Override 53 | public boolean equals(java.lang.Object o) { 54 | if (this == o) { 55 | return true; 56 | } 57 | if (o == null || getClass() != o.getClass()) { 58 | return false; 59 | } 60 | UserForUpdate userForUpdate = (UserForUpdate) o; 61 | return Objects.equals(this.defaultOfficeId, userForUpdate.defaultOfficeId); 62 | } 63 | 64 | /** 65 | * Returns the HashCode. 66 | */ 67 | @Override 68 | public int hashCode() { 69 | return Objects.hash(defaultOfficeId); 70 | } 71 | 72 | 73 | /** 74 | * Converts the given object to string. 75 | */ 76 | @Override 77 | public String toString() { 78 | StringBuilder sb = new StringBuilder(); 79 | sb.append("class UserForUpdate {\n"); 80 | 81 | sb.append(" defaultOfficeId: ").append(toIndentedString(defaultOfficeId)).append("\n"); 82 | sb.append("}"); 83 | return sb.toString(); 84 | } 85 | 86 | /** 87 | * Convert the given object to string with each line indented by 4 spaces 88 | * (except the first line). 89 | */ 90 | private String toIndentedString(java.lang.Object o) { 91 | if (o == null) { 92 | return "null"; 93 | } 94 | return o.toString().replace("\n", "\n "); 95 | } 96 | 97 | } 98 | 99 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/TaskListForCreate.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * TaskListForCreate. 12 | * 13 | */ 14 | 15 | public class TaskListForCreate { 16 | @JsonProperty("taskListTemplateId") 17 | private Integer taskListTemplateId = null; 18 | 19 | 20 | /** 21 | * taskListTemplateId. 22 | * 23 | * @return TaskListForCreate 24 | **/ 25 | public TaskListForCreate taskListTemplateId(Integer taskListTemplateId) { 26 | this.taskListTemplateId = taskListTemplateId; 27 | return this; 28 | } 29 | 30 | /** 31 | * Get taskListTemplateId. 32 | * @return taskListTemplateId 33 | **/ 34 | @Schema(description = "") 35 | public Integer getTaskListTemplateId() { 36 | return taskListTemplateId; 37 | } 38 | 39 | /** 40 | * setTaskListTemplateId. 41 | **/ 42 | public void setTaskListTemplateId(Integer taskListTemplateId) { 43 | this.taskListTemplateId = taskListTemplateId; 44 | } 45 | 46 | 47 | /** 48 | * Compares objects. 49 | * 50 | * @return true or false depending on comparison result. 51 | */ 52 | @Override 53 | public boolean equals(java.lang.Object o) { 54 | if (this == o) { 55 | return true; 56 | } 57 | if (o == null || getClass() != o.getClass()) { 58 | return false; 59 | } 60 | TaskListForCreate taskListForCreate = (TaskListForCreate) o; 61 | return Objects.equals(this.taskListTemplateId, taskListForCreate.taskListTemplateId); 62 | } 63 | 64 | /** 65 | * Returns the HashCode. 66 | */ 67 | @Override 68 | public int hashCode() { 69 | return Objects.hash(taskListTemplateId); 70 | } 71 | 72 | 73 | /** 74 | * Converts the given object to string. 75 | */ 76 | @Override 77 | public String toString() { 78 | StringBuilder sb = new StringBuilder(); 79 | sb.append("class TaskListForCreate {\n"); 80 | 81 | sb.append(" taskListTemplateId: ").append(toIndentedString(taskListTemplateId)).append("\n"); 82 | sb.append("}"); 83 | return sb.toString(); 84 | } 85 | 86 | /** 87 | * Convert the given object to string with each line indented by 4 spaces 88 | * (except the first line). 89 | */ 90 | private String toIndentedString(java.lang.Object o) { 91 | if (o == null) { 92 | return "null"; 93 | } 94 | return o.toString().replace("\n", "\n "); 95 | } 96 | 97 | } 98 | 99 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/CustomData.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * CustomData. 12 | * 13 | */ 14 | 15 | public class CustomData { 16 | @JsonProperty("isRequiredOnCreate") 17 | private Boolean isRequiredOnCreate = null; 18 | 19 | @JsonProperty("isRequiredOnSubmit") 20 | private Boolean isRequiredOnSubmit = null; 21 | 22 | /** 23 | * Get isRequiredOnCreate. 24 | * @return isRequiredOnCreate 25 | **/ 26 | @Schema(description = "") 27 | public Boolean isIsRequiredOnCreate() { 28 | return isRequiredOnCreate; 29 | } 30 | 31 | /** 32 | * Get isRequiredOnSubmit. 33 | * @return isRequiredOnSubmit 34 | **/ 35 | @Schema(description = "") 36 | public Boolean isIsRequiredOnSubmit() { 37 | return isRequiredOnSubmit; 38 | } 39 | 40 | 41 | /** 42 | * Compares objects. 43 | * 44 | * @return true or false depending on comparison result. 45 | */ 46 | @Override 47 | public boolean equals(java.lang.Object o) { 48 | if (this == o) { 49 | return true; 50 | } 51 | if (o == null || getClass() != o.getClass()) { 52 | return false; 53 | } 54 | CustomData customData = (CustomData) o; 55 | return Objects.equals(this.isRequiredOnCreate, customData.isRequiredOnCreate) && 56 | Objects.equals(this.isRequiredOnSubmit, customData.isRequiredOnSubmit); 57 | } 58 | 59 | /** 60 | * Returns the HashCode. 61 | */ 62 | @Override 63 | public int hashCode() { 64 | return Objects.hash(isRequiredOnCreate, isRequiredOnSubmit); 65 | } 66 | 67 | 68 | /** 69 | * Converts the given object to string. 70 | */ 71 | @Override 72 | public String toString() { 73 | StringBuilder sb = new StringBuilder(); 74 | sb.append("class CustomData {\n"); 75 | 76 | sb.append(" isRequiredOnCreate: ").append(toIndentedString(isRequiredOnCreate)).append("\n"); 77 | sb.append(" isRequiredOnSubmit: ").append(toIndentedString(isRequiredOnSubmit)).append("\n"); 78 | sb.append("}"); 79 | return sb.toString(); 80 | } 81 | 82 | /** 83 | * Convert the given object to string with each line indented by 4 spaces 84 | * (except the first line). 85 | */ 86 | private String toIndentedString(java.lang.Object o) { 87 | if (o == null) { 88 | return "null"; 89 | } 90 | return o.toString().replace("\n", "\n "); 91 | } 92 | 93 | } 94 | 95 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/RoomUserRemovalDetail.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | 11 | /** 12 | * RoomUserRemovalDetail. 13 | * 14 | */ 15 | 16 | public class RoomUserRemovalDetail { 17 | @JsonProperty("revocationDate") 18 | private String revocationDate = null; 19 | 20 | 21 | /** 22 | * revocationDate. 23 | * 24 | * @return RoomUserRemovalDetail 25 | **/ 26 | public RoomUserRemovalDetail revocationDate(String revocationDate) { 27 | this.revocationDate = revocationDate; 28 | return this; 29 | } 30 | 31 | /** 32 | * Get revocationDate. 33 | * @return revocationDate 34 | **/ 35 | @Schema(description = "") 36 | public String getRevocationDate() { 37 | return revocationDate; 38 | } 39 | 40 | /** 41 | * setRevocationDate. 42 | **/ 43 | public void setRevocationDate(String revocationDate) { 44 | this.revocationDate = revocationDate; 45 | } 46 | 47 | 48 | /** 49 | * Compares objects. 50 | * 51 | * @return true or false depending on comparison result. 52 | */ 53 | @Override 54 | public boolean equals(java.lang.Object o) { 55 | if (this == o) { 56 | return true; 57 | } 58 | if (o == null || getClass() != o.getClass()) { 59 | return false; 60 | } 61 | RoomUserRemovalDetail roomUserRemovalDetail = (RoomUserRemovalDetail) o; 62 | return Objects.equals(this.revocationDate, roomUserRemovalDetail.revocationDate); 63 | } 64 | 65 | /** 66 | * Returns the HashCode. 67 | */ 68 | @Override 69 | public int hashCode() { 70 | return Objects.hash(revocationDate); 71 | } 72 | 73 | 74 | /** 75 | * Converts the given object to string. 76 | */ 77 | @Override 78 | public String toString() { 79 | StringBuilder sb = new StringBuilder(); 80 | sb.append("class RoomUserRemovalDetail {\n"); 81 | 82 | sb.append(" revocationDate: ").append(toIndentedString(revocationDate)).append("\n"); 83 | sb.append("}"); 84 | return sb.toString(); 85 | } 86 | 87 | /** 88 | * Convert the given object to string with each line indented by 4 spaces 89 | * (except the first line). 90 | */ 91 | private String toIndentedString(java.lang.Object o) { 92 | if (o == null) { 93 | return "null"; 94 | } 95 | return o.toString().replace("\n", "\n "); 96 | } 97 | 98 | } 99 | 100 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/FieldData.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * FieldData. 12 | * 13 | */ 14 | 15 | public class FieldData { 16 | @JsonProperty("data") 17 | private java.util.Map data = null; 18 | 19 | 20 | /** 21 | * data. 22 | * 23 | * @return FieldData 24 | **/ 25 | public FieldData data(java.util.Map data) { 26 | this.data = data; 27 | return this; 28 | } 29 | 30 | /** 31 | * putDataItem. 32 | * 33 | * @return FieldData 34 | **/ 35 | public FieldData putDataItem(String key, Object dataItem) { 36 | if (this.data == null) { 37 | this.data = new java.util.HashMap<>(); 38 | } 39 | this.data.put(key, dataItem); 40 | return this; 41 | } 42 | 43 | /** 44 | * Get data. 45 | * @return data 46 | **/ 47 | @Schema(description = "") 48 | public java.util.Map getData() { 49 | return data; 50 | } 51 | 52 | /** 53 | * setData. 54 | **/ 55 | public void setData(java.util.Map data) { 56 | this.data = data; 57 | } 58 | 59 | 60 | /** 61 | * Compares objects. 62 | * 63 | * @return true or false depending on comparison result. 64 | */ 65 | @Override 66 | public boolean equals(java.lang.Object o) { 67 | if (this == o) { 68 | return true; 69 | } 70 | if (o == null || getClass() != o.getClass()) { 71 | return false; 72 | } 73 | FieldData fieldData = (FieldData) o; 74 | return Objects.equals(this.data, fieldData.data); 75 | } 76 | 77 | /** 78 | * Returns the HashCode. 79 | */ 80 | @Override 81 | public int hashCode() { 82 | return Objects.hash(data); 83 | } 84 | 85 | 86 | /** 87 | * Converts the given object to string. 88 | */ 89 | @Override 90 | public String toString() { 91 | StringBuilder sb = new StringBuilder(); 92 | sb.append("class FieldData {\n"); 93 | 94 | sb.append(" data: ").append(toIndentedString(data)).append("\n"); 95 | sb.append("}"); 96 | return sb.toString(); 97 | } 98 | 99 | /** 100 | * Convert the given object to string with each line indented by 4 spaces 101 | * (except the first line). 102 | */ 103 | private String toIndentedString(java.lang.Object o) { 104 | if (o == null) { 105 | return "null"; 106 | } 107 | return o.toString().replace("\n", "\n "); 108 | } 109 | 110 | } 111 | 112 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/ESignAccountRoleSettings.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * ESignAccountRoleSettings. 12 | * 13 | */ 14 | 15 | public class ESignAccountRoleSettings { 16 | @JsonProperty("allowAccountManagement") 17 | private Boolean allowAccountManagement = null; 18 | 19 | 20 | /** 21 | * allowAccountManagement. 22 | * 23 | * @return ESignAccountRoleSettings 24 | **/ 25 | public ESignAccountRoleSettings allowAccountManagement(Boolean allowAccountManagement) { 26 | this.allowAccountManagement = allowAccountManagement; 27 | return this; 28 | } 29 | 30 | /** 31 | * Get allowAccountManagement. 32 | * @return allowAccountManagement 33 | **/ 34 | @Schema(description = "") 35 | public Boolean isAllowAccountManagement() { 36 | return allowAccountManagement; 37 | } 38 | 39 | /** 40 | * setAllowAccountManagement. 41 | **/ 42 | public void setAllowAccountManagement(Boolean allowAccountManagement) { 43 | this.allowAccountManagement = allowAccountManagement; 44 | } 45 | 46 | 47 | /** 48 | * Compares objects. 49 | * 50 | * @return true or false depending on comparison result. 51 | */ 52 | @Override 53 | public boolean equals(java.lang.Object o) { 54 | if (this == o) { 55 | return true; 56 | } 57 | if (o == null || getClass() != o.getClass()) { 58 | return false; 59 | } 60 | ESignAccountRoleSettings esignAccountRoleSettings = (ESignAccountRoleSettings) o; 61 | return Objects.equals(this.allowAccountManagement, esignAccountRoleSettings.allowAccountManagement); 62 | } 63 | 64 | /** 65 | * Returns the HashCode. 66 | */ 67 | @Override 68 | public int hashCode() { 69 | return Objects.hash(allowAccountManagement); 70 | } 71 | 72 | 73 | /** 74 | * Converts the given object to string. 75 | */ 76 | @Override 77 | public String toString() { 78 | StringBuilder sb = new StringBuilder(); 79 | sb.append("class ESignAccountRoleSettings {\n"); 80 | 81 | sb.append(" allowAccountManagement: ").append(toIndentedString(allowAccountManagement)).append("\n"); 82 | sb.append("}"); 83 | return sb.toString(); 84 | } 85 | 86 | /** 87 | * Convert the given object to string with each line indented by 4 spaces 88 | * (except the first line). 89 | */ 90 | private String toIndentedString(java.lang.Object o) { 91 | if (o == null) { 92 | return "null"; 93 | } 94 | return o.toString().replace("\n", "\n "); 95 | } 96 | 97 | } 98 | 99 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalStates.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.State; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalStates. 13 | * 14 | */ 15 | 16 | public class GlobalStates { 17 | @JsonProperty("states") 18 | private java.util.List states = null; 19 | 20 | 21 | /** 22 | * states. 23 | * 24 | * @return GlobalStates 25 | **/ 26 | public GlobalStates states(java.util.List states) { 27 | this.states = states; 28 | return this; 29 | } 30 | 31 | /** 32 | * addStatesItem. 33 | * 34 | * @return GlobalStates 35 | **/ 36 | public GlobalStates addStatesItem(State statesItem) { 37 | if (this.states == null) { 38 | this.states = new java.util.ArrayList<>(); 39 | } 40 | this.states.add(statesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get states. 46 | * @return states 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getStates() { 50 | return states; 51 | } 52 | 53 | /** 54 | * setStates. 55 | **/ 56 | public void setStates(java.util.List states) { 57 | this.states = states; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalStates globalStates = (GlobalStates) o; 75 | return Objects.equals(this.states, globalStates.states); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(states); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalStates {\n"); 94 | 95 | sb.append(" states: ").append(toIndentedString(states)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/FieldDataForCreate.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * FieldDataForCreate. 12 | * 13 | */ 14 | 15 | public class FieldDataForCreate { 16 | @JsonProperty("data") 17 | private java.util.Map data = null; 18 | 19 | 20 | /** 21 | * data. 22 | * 23 | * @return FieldDataForCreate 24 | **/ 25 | public FieldDataForCreate data(java.util.Map data) { 26 | this.data = data; 27 | return this; 28 | } 29 | 30 | /** 31 | * putDataItem. 32 | * 33 | * @return FieldDataForCreate 34 | **/ 35 | public FieldDataForCreate putDataItem(String key, Object dataItem) { 36 | if (this.data == null) { 37 | this.data = new java.util.HashMap<>(); 38 | } 39 | this.data.put(key, dataItem); 40 | return this; 41 | } 42 | 43 | /** 44 | * Get data. 45 | * @return data 46 | **/ 47 | @Schema(description = "") 48 | public java.util.Map getData() { 49 | return data; 50 | } 51 | 52 | /** 53 | * setData. 54 | **/ 55 | public void setData(java.util.Map data) { 56 | this.data = data; 57 | } 58 | 59 | 60 | /** 61 | * Compares objects. 62 | * 63 | * @return true or false depending on comparison result. 64 | */ 65 | @Override 66 | public boolean equals(java.lang.Object o) { 67 | if (this == o) { 68 | return true; 69 | } 70 | if (o == null || getClass() != o.getClass()) { 71 | return false; 72 | } 73 | FieldDataForCreate fieldDataForCreate = (FieldDataForCreate) o; 74 | return Objects.equals(this.data, fieldDataForCreate.data); 75 | } 76 | 77 | /** 78 | * Returns the HashCode. 79 | */ 80 | @Override 81 | public int hashCode() { 82 | return Objects.hash(data); 83 | } 84 | 85 | 86 | /** 87 | * Converts the given object to string. 88 | */ 89 | @Override 90 | public String toString() { 91 | StringBuilder sb = new StringBuilder(); 92 | sb.append("class FieldDataForCreate {\n"); 93 | 94 | sb.append(" data: ").append(toIndentedString(data)).append("\n"); 95 | sb.append("}"); 96 | return sb.toString(); 97 | } 98 | 99 | /** 100 | * Convert the given object to string with each line indented by 4 spaces 101 | * (except the first line). 102 | */ 103 | private String toIndentedString(java.lang.Object o) { 104 | if (o == null) { 105 | return "null"; 106 | } 107 | return o.toString().replace("\n", "\n "); 108 | } 109 | 110 | } 111 | 112 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/FieldDataForUpdate.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * FieldDataForUpdate. 12 | * 13 | */ 14 | 15 | public class FieldDataForUpdate { 16 | @JsonProperty("data") 17 | private java.util.Map data = null; 18 | 19 | 20 | /** 21 | * data. 22 | * 23 | * @return FieldDataForUpdate 24 | **/ 25 | public FieldDataForUpdate data(java.util.Map data) { 26 | this.data = data; 27 | return this; 28 | } 29 | 30 | /** 31 | * putDataItem. 32 | * 33 | * @return FieldDataForUpdate 34 | **/ 35 | public FieldDataForUpdate putDataItem(String key, Object dataItem) { 36 | if (this.data == null) { 37 | this.data = new java.util.HashMap<>(); 38 | } 39 | this.data.put(key, dataItem); 40 | return this; 41 | } 42 | 43 | /** 44 | * Get data. 45 | * @return data 46 | **/ 47 | @Schema(description = "") 48 | public java.util.Map getData() { 49 | return data; 50 | } 51 | 52 | /** 53 | * setData. 54 | **/ 55 | public void setData(java.util.Map data) { 56 | this.data = data; 57 | } 58 | 59 | 60 | /** 61 | * Compares objects. 62 | * 63 | * @return true or false depending on comparison result. 64 | */ 65 | @Override 66 | public boolean equals(java.lang.Object o) { 67 | if (this == o) { 68 | return true; 69 | } 70 | if (o == null || getClass() != o.getClass()) { 71 | return false; 72 | } 73 | FieldDataForUpdate fieldDataForUpdate = (FieldDataForUpdate) o; 74 | return Objects.equals(this.data, fieldDataForUpdate.data); 75 | } 76 | 77 | /** 78 | * Returns the HashCode. 79 | */ 80 | @Override 81 | public int hashCode() { 82 | return Objects.hash(data); 83 | } 84 | 85 | 86 | /** 87 | * Converts the given object to string. 88 | */ 89 | @Override 90 | public String toString() { 91 | StringBuilder sb = new StringBuilder(); 92 | sb.append("class FieldDataForUpdate {\n"); 93 | 94 | sb.append(" data: ").append(toIndentedString(data)).append("\n"); 95 | sb.append("}"); 96 | return sb.toString(); 97 | } 98 | 99 | /** 100 | * Convert the given object to string with each line indented by 4 spaces 101 | * (except the first line). 102 | */ 103 | private String toIndentedString(java.lang.Object o) { 104 | if (o == null) { 105 | return "null"; 106 | } 107 | return o.toString().replace("\n", "\n "); 108 | } 109 | 110 | } 111 | 112 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/SelectListFieldOption.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * SelectListFieldOption. 12 | * 13 | */ 14 | 15 | public class SelectListFieldOption { 16 | @JsonProperty("id") 17 | private Object id = null; 18 | 19 | @JsonProperty("title") 20 | private String title = null; 21 | 22 | @JsonProperty("order") 23 | private Integer order = null; 24 | 25 | /** 26 | * Get id. 27 | * @return id 28 | **/ 29 | @Schema(description = "") 30 | public Object getId() { 31 | return id; 32 | } 33 | 34 | /** 35 | * Get title. 36 | * @return title 37 | **/ 38 | @Schema(description = "") 39 | public String getTitle() { 40 | return title; 41 | } 42 | 43 | /** 44 | * Get order. 45 | * @return order 46 | **/ 47 | @Schema(description = "") 48 | public Integer getOrder() { 49 | return order; 50 | } 51 | 52 | 53 | /** 54 | * Compares objects. 55 | * 56 | * @return true or false depending on comparison result. 57 | */ 58 | @Override 59 | public boolean equals(java.lang.Object o) { 60 | if (this == o) { 61 | return true; 62 | } 63 | if (o == null || getClass() != o.getClass()) { 64 | return false; 65 | } 66 | SelectListFieldOption selectListFieldOption = (SelectListFieldOption) o; 67 | return Objects.equals(this.id, selectListFieldOption.id) && 68 | Objects.equals(this.title, selectListFieldOption.title) && 69 | Objects.equals(this.order, selectListFieldOption.order); 70 | } 71 | 72 | /** 73 | * Returns the HashCode. 74 | */ 75 | @Override 76 | public int hashCode() { 77 | return Objects.hash(id, title, order); 78 | } 79 | 80 | 81 | /** 82 | * Converts the given object to string. 83 | */ 84 | @Override 85 | public String toString() { 86 | StringBuilder sb = new StringBuilder(); 87 | sb.append("class SelectListFieldOption {\n"); 88 | 89 | sb.append(" id: ").append(toIndentedString(id)).append("\n"); 90 | sb.append(" title: ").append(toIndentedString(title)).append("\n"); 91 | sb.append(" order: ").append(toIndentedString(order)).append("\n"); 92 | sb.append("}"); 93 | return sb.toString(); 94 | } 95 | 96 | /** 97 | * Convert the given object to string with each line indented by 4 spaces 98 | * (except the first line). 99 | */ 100 | private String toIndentedString(java.lang.Object o) { 101 | if (o == null) { 102 | return "null"; 103 | } 104 | return o.toString().replace("\n", "\n "); 105 | } 106 | 107 | } 108 | 109 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/FieldSet.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.Field; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * FieldSet. 13 | * 14 | */ 15 | 16 | public class FieldSet { 17 | @JsonProperty("fieldSetId") 18 | private java.util.UUID fieldSetId = null; 19 | 20 | @JsonProperty("title") 21 | private String title = null; 22 | 23 | @JsonProperty("fields") 24 | private java.util.List fields = null; 25 | 26 | /** 27 | * Get fieldSetId. 28 | * @return fieldSetId 29 | **/ 30 | @Schema(description = "") 31 | public java.util.UUID getFieldSetId() { 32 | return fieldSetId; 33 | } 34 | 35 | /** 36 | * Get title. 37 | * @return title 38 | **/ 39 | @Schema(description = "") 40 | public String getTitle() { 41 | return title; 42 | } 43 | 44 | /** 45 | * Get fields. 46 | * @return fields 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getFields() { 50 | return fields; 51 | } 52 | 53 | 54 | /** 55 | * Compares objects. 56 | * 57 | * @return true or false depending on comparison result. 58 | */ 59 | @Override 60 | public boolean equals(java.lang.Object o) { 61 | if (this == o) { 62 | return true; 63 | } 64 | if (o == null || getClass() != o.getClass()) { 65 | return false; 66 | } 67 | FieldSet fieldSet = (FieldSet) o; 68 | return Objects.equals(this.fieldSetId, fieldSet.fieldSetId) && 69 | Objects.equals(this.title, fieldSet.title) && 70 | Objects.equals(this.fields, fieldSet.fields); 71 | } 72 | 73 | /** 74 | * Returns the HashCode. 75 | */ 76 | @Override 77 | public int hashCode() { 78 | return Objects.hash(fieldSetId, title, fields); 79 | } 80 | 81 | 82 | /** 83 | * Converts the given object to string. 84 | */ 85 | @Override 86 | public String toString() { 87 | StringBuilder sb = new StringBuilder(); 88 | sb.append("class FieldSet {\n"); 89 | 90 | sb.append(" fieldSetId: ").append(toIndentedString(fieldSetId)).append("\n"); 91 | sb.append(" title: ").append(toIndentedString(title)).append("\n"); 92 | sb.append(" fields: ").append(toIndentedString(fields)).append("\n"); 93 | sb.append("}"); 94 | return sb.toString(); 95 | } 96 | 97 | /** 98 | * Convert the given object to string with each line indented by 4 spaces 99 | * (except the first line). 100 | */ 101 | private String toIndentedString(java.lang.Object o) { 102 | if (o == null) { 103 | return "null"; 104 | } 105 | return o.toString().replace("\n", "\n "); 106 | } 107 | 108 | } 109 | 110 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalCountries.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.Country; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalCountries. 13 | * 14 | */ 15 | 16 | public class GlobalCountries { 17 | @JsonProperty("countries") 18 | private java.util.List countries = null; 19 | 20 | 21 | /** 22 | * countries. 23 | * 24 | * @return GlobalCountries 25 | **/ 26 | public GlobalCountries countries(java.util.List countries) { 27 | this.countries = countries; 28 | return this; 29 | } 30 | 31 | /** 32 | * addCountriesItem. 33 | * 34 | * @return GlobalCountries 35 | **/ 36 | public GlobalCountries addCountriesItem(Country countriesItem) { 37 | if (this.countries == null) { 38 | this.countries = new java.util.ArrayList<>(); 39 | } 40 | this.countries.add(countriesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get countries. 46 | * @return countries 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getCountries() { 50 | return countries; 51 | } 52 | 53 | /** 54 | * setCountries. 55 | **/ 56 | public void setCountries(java.util.List countries) { 57 | this.countries = countries; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalCountries globalCountries = (GlobalCountries) o; 75 | return Objects.equals(this.countries, globalCountries.countries); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(countries); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalCountries {\n"); 94 | 95 | sb.append(" countries: ").append(toIndentedString(countries)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalTimeZones.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.TimeZone; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalTimeZones. 13 | * 14 | */ 15 | 16 | public class GlobalTimeZones { 17 | @JsonProperty("timeZones") 18 | private java.util.List timeZones = null; 19 | 20 | 21 | /** 22 | * timeZones. 23 | * 24 | * @return GlobalTimeZones 25 | **/ 26 | public GlobalTimeZones timeZones(java.util.List timeZones) { 27 | this.timeZones = timeZones; 28 | return this; 29 | } 30 | 31 | /** 32 | * addTimeZonesItem. 33 | * 34 | * @return GlobalTimeZones 35 | **/ 36 | public GlobalTimeZones addTimeZonesItem(TimeZone timeZonesItem) { 37 | if (this.timeZones == null) { 38 | this.timeZones = new java.util.ArrayList<>(); 39 | } 40 | this.timeZones.add(timeZonesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get timeZones. 46 | * @return timeZones 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getTimeZones() { 50 | return timeZones; 51 | } 52 | 53 | /** 54 | * setTimeZones. 55 | **/ 56 | public void setTimeZones(java.util.List timeZones) { 57 | this.timeZones = timeZones; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalTimeZones globalTimeZones = (GlobalTimeZones) o; 75 | return Objects.equals(this.timeZones, globalTimeZones.timeZones); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(timeZones); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalTimeZones {\n"); 94 | 95 | sb.append(" timeZones: ").append(toIndentedString(timeZones)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/FormGroupSummary.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * FormGroupSummary. 12 | * 13 | */ 14 | 15 | public class FormGroupSummary { 16 | @JsonProperty("formGroupId") 17 | private String formGroupId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | @JsonProperty("formCount") 23 | private Integer formCount = null; 24 | 25 | /** 26 | * Get formGroupId. 27 | * @return formGroupId 28 | **/ 29 | @Schema(description = "") 30 | public String getFormGroupId() { 31 | return formGroupId; 32 | } 33 | 34 | /** 35 | * Get name. 36 | * @return name 37 | **/ 38 | @Schema(description = "") 39 | public String getName() { 40 | return name; 41 | } 42 | 43 | /** 44 | * Get formCount. 45 | * @return formCount 46 | **/ 47 | @Schema(description = "") 48 | public Integer getFormCount() { 49 | return formCount; 50 | } 51 | 52 | 53 | /** 54 | * Compares objects. 55 | * 56 | * @return true or false depending on comparison result. 57 | */ 58 | @Override 59 | public boolean equals(java.lang.Object o) { 60 | if (this == o) { 61 | return true; 62 | } 63 | if (o == null || getClass() != o.getClass()) { 64 | return false; 65 | } 66 | FormGroupSummary formGroupSummary = (FormGroupSummary) o; 67 | return Objects.equals(this.formGroupId, formGroupSummary.formGroupId) && 68 | Objects.equals(this.name, formGroupSummary.name) && 69 | Objects.equals(this.formCount, formGroupSummary.formCount); 70 | } 71 | 72 | /** 73 | * Returns the HashCode. 74 | */ 75 | @Override 76 | public int hashCode() { 77 | return Objects.hash(formGroupId, name, formCount); 78 | } 79 | 80 | 81 | /** 82 | * Converts the given object to string. 83 | */ 84 | @Override 85 | public String toString() { 86 | StringBuilder sb = new StringBuilder(); 87 | sb.append("class FormGroupSummary {\n"); 88 | 89 | sb.append(" formGroupId: ").append(toIndentedString(formGroupId)).append("\n"); 90 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 91 | sb.append(" formCount: ").append(toIndentedString(formCount)).append("\n"); 92 | sb.append("}"); 93 | return sb.toString(); 94 | } 95 | 96 | /** 97 | * Convert the given object to string with each line indented by 4 spaces 98 | * (except the first line). 99 | */ 100 | private String toIndentedString(java.lang.Object o) { 101 | if (o == null) { 102 | return "null"; 103 | } 104 | return o.toString().replace("\n", "\n "); 105 | } 106 | 107 | } 108 | 109 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalCurrencies.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.Currency; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalCurrencies. 13 | * 14 | */ 15 | 16 | public class GlobalCurrencies { 17 | @JsonProperty("currencies") 18 | private java.util.List currencies = null; 19 | 20 | 21 | /** 22 | * currencies. 23 | * 24 | * @return GlobalCurrencies 25 | **/ 26 | public GlobalCurrencies currencies(java.util.List currencies) { 27 | this.currencies = currencies; 28 | return this; 29 | } 30 | 31 | /** 32 | * addCurrenciesItem. 33 | * 34 | * @return GlobalCurrencies 35 | **/ 36 | public GlobalCurrencies addCurrenciesItem(Currency currenciesItem) { 37 | if (this.currencies == null) { 38 | this.currencies = new java.util.ArrayList<>(); 39 | } 40 | this.currencies.add(currenciesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get currencies. 46 | * @return currencies 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getCurrencies() { 50 | return currencies; 51 | } 52 | 53 | /** 54 | * setCurrencies. 55 | **/ 56 | public void setCurrencies(java.util.List currencies) { 57 | this.currencies = currencies; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalCurrencies globalCurrencies = (GlobalCurrencies) o; 75 | return Objects.equals(this.currencies, globalCurrencies.currencies); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(currencies); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalCurrencies {\n"); 94 | 95 | sb.append(" currencies: ").append(toIndentedString(currencies)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/FormLibrarySummary.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * FormLibrarySummary. 12 | * 13 | */ 14 | 15 | public class FormLibrarySummary { 16 | @JsonProperty("formsLibraryId") 17 | private java.util.UUID formsLibraryId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | @JsonProperty("formCount") 23 | private Integer formCount = null; 24 | 25 | /** 26 | * Get formsLibraryId. 27 | * @return formsLibraryId 28 | **/ 29 | @Schema(description = "") 30 | public java.util.UUID getFormsLibraryId() { 31 | return formsLibraryId; 32 | } 33 | 34 | /** 35 | * Get name. 36 | * @return name 37 | **/ 38 | @Schema(description = "") 39 | public String getName() { 40 | return name; 41 | } 42 | 43 | /** 44 | * Get formCount. 45 | * @return formCount 46 | **/ 47 | @Schema(description = "") 48 | public Integer getFormCount() { 49 | return formCount; 50 | } 51 | 52 | 53 | /** 54 | * Compares objects. 55 | * 56 | * @return true or false depending on comparison result. 57 | */ 58 | @Override 59 | public boolean equals(java.lang.Object o) { 60 | if (this == o) { 61 | return true; 62 | } 63 | if (o == null || getClass() != o.getClass()) { 64 | return false; 65 | } 66 | FormLibrarySummary formLibrarySummary = (FormLibrarySummary) o; 67 | return Objects.equals(this.formsLibraryId, formLibrarySummary.formsLibraryId) && 68 | Objects.equals(this.name, formLibrarySummary.name) && 69 | Objects.equals(this.formCount, formLibrarySummary.formCount); 70 | } 71 | 72 | /** 73 | * Returns the HashCode. 74 | */ 75 | @Override 76 | public int hashCode() { 77 | return Objects.hash(formsLibraryId, name, formCount); 78 | } 79 | 80 | 81 | /** 82 | * Converts the given object to string. 83 | */ 84 | @Override 85 | public String toString() { 86 | StringBuilder sb = new StringBuilder(); 87 | sb.append("class FormLibrarySummary {\n"); 88 | 89 | sb.append(" formsLibraryId: ").append(toIndentedString(formsLibraryId)).append("\n"); 90 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 91 | sb.append(" formCount: ").append(toIndentedString(formCount)).append("\n"); 92 | sb.append("}"); 93 | return sb.toString(); 94 | } 95 | 96 | /** 97 | * Convert the given object to string with each line indented by 4 spaces 98 | * (except the first line). 99 | */ 100 | private String toIndentedString(java.lang.Object o) { 101 | if (o == null) { 102 | return "null"; 103 | } 104 | return o.toString().replace("\n", "\n "); 105 | } 106 | 107 | } 108 | 109 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/RoomTemplate.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * RoomTemplate. 12 | * 13 | */ 14 | 15 | public class RoomTemplate { 16 | @JsonProperty("roomTemplateId") 17 | private Integer roomTemplateId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | @JsonProperty("taskTemplateCount") 23 | private Integer taskTemplateCount = null; 24 | 25 | /** 26 | * Get roomTemplateId. 27 | * @return roomTemplateId 28 | **/ 29 | @Schema(description = "") 30 | public Integer getRoomTemplateId() { 31 | return roomTemplateId; 32 | } 33 | 34 | /** 35 | * Get name. 36 | * @return name 37 | **/ 38 | @Schema(description = "") 39 | public String getName() { 40 | return name; 41 | } 42 | 43 | /** 44 | * Get taskTemplateCount. 45 | * @return taskTemplateCount 46 | **/ 47 | @Schema(description = "") 48 | public Integer getTaskTemplateCount() { 49 | return taskTemplateCount; 50 | } 51 | 52 | 53 | /** 54 | * Compares objects. 55 | * 56 | * @return true or false depending on comparison result. 57 | */ 58 | @Override 59 | public boolean equals(java.lang.Object o) { 60 | if (this == o) { 61 | return true; 62 | } 63 | if (o == null || getClass() != o.getClass()) { 64 | return false; 65 | } 66 | RoomTemplate roomTemplate = (RoomTemplate) o; 67 | return Objects.equals(this.roomTemplateId, roomTemplate.roomTemplateId) && 68 | Objects.equals(this.name, roomTemplate.name) && 69 | Objects.equals(this.taskTemplateCount, roomTemplate.taskTemplateCount); 70 | } 71 | 72 | /** 73 | * Returns the HashCode. 74 | */ 75 | @Override 76 | public int hashCode() { 77 | return Objects.hash(roomTemplateId, name, taskTemplateCount); 78 | } 79 | 80 | 81 | /** 82 | * Converts the given object to string. 83 | */ 84 | @Override 85 | public String toString() { 86 | StringBuilder sb = new StringBuilder(); 87 | sb.append("class RoomTemplate {\n"); 88 | 89 | sb.append(" roomTemplateId: ").append(toIndentedString(roomTemplateId)).append("\n"); 90 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 91 | sb.append(" taskTemplateCount: ").append(toIndentedString(taskTemplateCount)).append("\n"); 92 | sb.append("}"); 93 | return sb.toString(); 94 | } 95 | 96 | /** 97 | * Convert the given object to string with each line indented by 4 spaces 98 | * (except the first line). 99 | */ 100 | private String toIndentedString(java.lang.Object o) { 101 | if (o == null) { 102 | return "null"; 103 | } 104 | return o.toString().replace("\n", "\n "); 105 | } 106 | 107 | } 108 | 109 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/State.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * State. 12 | * 13 | */ 14 | 15 | public class State { 16 | @JsonProperty("stateId") 17 | private String stateId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * stateId. 25 | * 26 | * @return State 27 | **/ 28 | public State stateId(String stateId) { 29 | this.stateId = stateId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get stateId. 35 | * @return stateId 36 | **/ 37 | @Schema(description = "") 38 | public String getStateId() { 39 | return stateId; 40 | } 41 | 42 | /** 43 | * setStateId. 44 | **/ 45 | public void setStateId(String stateId) { 46 | this.stateId = stateId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return State 54 | **/ 55 | public State name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | State state = (State) o; 91 | return Objects.equals(this.stateId, state.stateId) && 92 | Objects.equals(this.name, state.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(stateId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class State {\n"); 111 | 112 | sb.append(" stateId: ").append(toIndentedString(stateId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/RoomContactType.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * RoomContactType. 12 | * 13 | */ 14 | 15 | public class RoomContactType { 16 | @JsonProperty("id") 17 | private String id = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * id. 25 | * 26 | * @return RoomContactType 27 | **/ 28 | public RoomContactType id(String id) { 29 | this.id = id; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get id. 35 | * @return id 36 | **/ 37 | @Schema(description = "") 38 | public String getId() { 39 | return id; 40 | } 41 | 42 | /** 43 | * setId. 44 | **/ 45 | public void setId(String id) { 46 | this.id = id; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return RoomContactType 54 | **/ 55 | public RoomContactType name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | RoomContactType roomContactType = (RoomContactType) o; 91 | return Objects.equals(this.id, roomContactType.id) && 92 | Objects.equals(this.name, roomContactType.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(id, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class RoomContactType {\n"); 111 | 112 | sb.append(" id: ").append(toIndentedString(id)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalTaskStatuses.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.TaskStatus; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalTaskStatuses. 13 | * 14 | */ 15 | 16 | public class GlobalTaskStatuses { 17 | @JsonProperty("taskStatuses") 18 | private java.util.List taskStatuses = null; 19 | 20 | 21 | /** 22 | * taskStatuses. 23 | * 24 | * @return GlobalTaskStatuses 25 | **/ 26 | public GlobalTaskStatuses taskStatuses(java.util.List taskStatuses) { 27 | this.taskStatuses = taskStatuses; 28 | return this; 29 | } 30 | 31 | /** 32 | * addTaskStatusesItem. 33 | * 34 | * @return GlobalTaskStatuses 35 | **/ 36 | public GlobalTaskStatuses addTaskStatusesItem(TaskStatus taskStatusesItem) { 37 | if (this.taskStatuses == null) { 38 | this.taskStatuses = new java.util.ArrayList<>(); 39 | } 40 | this.taskStatuses.add(taskStatusesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get taskStatuses. 46 | * @return taskStatuses 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getTaskStatuses() { 50 | return taskStatuses; 51 | } 52 | 53 | /** 54 | * setTaskStatuses. 55 | **/ 56 | public void setTaskStatuses(java.util.List taskStatuses) { 57 | this.taskStatuses = taskStatuses; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalTaskStatuses globalTaskStatuses = (GlobalTaskStatuses) o; 75 | return Objects.equals(this.taskStatuses, globalTaskStatuses.taskStatuses); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(taskStatuses); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalTaskStatuses {\n"); 94 | 95 | sb.append(" taskStatuses: ").append(toIndentedString(taskStatuses)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalContactSides.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.ContactSide; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalContactSides. 13 | * 14 | */ 15 | 16 | public class GlobalContactSides { 17 | @JsonProperty("contactSides") 18 | private java.util.List contactSides = null; 19 | 20 | 21 | /** 22 | * contactSides. 23 | * 24 | * @return GlobalContactSides 25 | **/ 26 | public GlobalContactSides contactSides(java.util.List contactSides) { 27 | this.contactSides = contactSides; 28 | return this; 29 | } 30 | 31 | /** 32 | * addContactSidesItem. 33 | * 34 | * @return GlobalContactSides 35 | **/ 36 | public GlobalContactSides addContactSidesItem(ContactSide contactSidesItem) { 37 | if (this.contactSides == null) { 38 | this.contactSides = new java.util.ArrayList<>(); 39 | } 40 | this.contactSides.add(contactSidesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get contactSides. 46 | * @return contactSides 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getContactSides() { 50 | return contactSides; 51 | } 52 | 53 | /** 54 | * setContactSides. 55 | **/ 56 | public void setContactSides(java.util.List contactSides) { 57 | this.contactSides = contactSides; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalContactSides globalContactSides = (GlobalContactSides) o; 75 | return Objects.equals(this.contactSides, globalContactSides.contactSides); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(contactSides); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalContactSides {\n"); 94 | 95 | sb.append(" contactSides: ").append(toIndentedString(contactSides)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/Country.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * Country. 12 | * 13 | */ 14 | 15 | public class Country { 16 | @JsonProperty("countryId") 17 | private String countryId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * countryId. 25 | * 26 | * @return Country 27 | **/ 28 | public Country countryId(String countryId) { 29 | this.countryId = countryId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get countryId. 35 | * @return countryId 36 | **/ 37 | @Schema(description = "") 38 | public String getCountryId() { 39 | return countryId; 40 | } 41 | 42 | /** 43 | * setCountryId. 44 | **/ 45 | public void setCountryId(String countryId) { 46 | this.countryId = countryId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return Country 54 | **/ 55 | public Country name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | Country country = (Country) o; 91 | return Objects.equals(this.countryId, country.countryId) && 92 | Objects.equals(this.name, country.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(countryId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class Country {\n"); 111 | 112 | sb.append(" countryId: ").append(toIndentedString(countryId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/OfficeReferenceCount.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * OfficeReferenceCount. 12 | * 13 | */ 14 | 15 | public class OfficeReferenceCount { 16 | @JsonProperty("referenceType") 17 | private String referenceType = null; 18 | 19 | @JsonProperty("referencedCount") 20 | private Integer referencedCount = null; 21 | 22 | 23 | /** 24 | * referenceType. 25 | * 26 | * @return OfficeReferenceCount 27 | **/ 28 | public OfficeReferenceCount referenceType(String referenceType) { 29 | this.referenceType = referenceType; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get referenceType. 35 | * @return referenceType 36 | **/ 37 | @Schema(description = "") 38 | public String getReferenceType() { 39 | return referenceType; 40 | } 41 | 42 | /** 43 | * setReferenceType. 44 | **/ 45 | public void setReferenceType(String referenceType) { 46 | this.referenceType = referenceType; 47 | } 48 | 49 | /** 50 | * Get referencedCount. 51 | * @return referencedCount 52 | **/ 53 | @Schema(description = "") 54 | public Integer getReferencedCount() { 55 | return referencedCount; 56 | } 57 | 58 | 59 | /** 60 | * Compares objects. 61 | * 62 | * @return true or false depending on comparison result. 63 | */ 64 | @Override 65 | public boolean equals(java.lang.Object o) { 66 | if (this == o) { 67 | return true; 68 | } 69 | if (o == null || getClass() != o.getClass()) { 70 | return false; 71 | } 72 | OfficeReferenceCount officeReferenceCount = (OfficeReferenceCount) o; 73 | return Objects.equals(this.referenceType, officeReferenceCount.referenceType) && 74 | Objects.equals(this.referencedCount, officeReferenceCount.referencedCount); 75 | } 76 | 77 | /** 78 | * Returns the HashCode. 79 | */ 80 | @Override 81 | public int hashCode() { 82 | return Objects.hash(referenceType, referencedCount); 83 | } 84 | 85 | 86 | /** 87 | * Converts the given object to string. 88 | */ 89 | @Override 90 | public String toString() { 91 | StringBuilder sb = new StringBuilder(); 92 | sb.append("class OfficeReferenceCount {\n"); 93 | 94 | sb.append(" referenceType: ").append(toIndentedString(referenceType)).append("\n"); 95 | sb.append(" referencedCount: ").append(toIndentedString(referencedCount)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalActivityTypes.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.ActivityType; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalActivityTypes. 13 | * 14 | */ 15 | 16 | public class GlobalActivityTypes { 17 | @JsonProperty("activityTypes") 18 | private java.util.List activityTypes = null; 19 | 20 | 21 | /** 22 | * activityTypes. 23 | * 24 | * @return GlobalActivityTypes 25 | **/ 26 | public GlobalActivityTypes activityTypes(java.util.List activityTypes) { 27 | this.activityTypes = activityTypes; 28 | return this; 29 | } 30 | 31 | /** 32 | * addActivityTypesItem. 33 | * 34 | * @return GlobalActivityTypes 35 | **/ 36 | public GlobalActivityTypes addActivityTypesItem(ActivityType activityTypesItem) { 37 | if (this.activityTypes == null) { 38 | this.activityTypes = new java.util.ArrayList<>(); 39 | } 40 | this.activityTypes.add(activityTypesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get activityTypes. 46 | * @return activityTypes 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getActivityTypes() { 50 | return activityTypes; 51 | } 52 | 53 | /** 54 | * setActivityTypes. 55 | **/ 56 | public void setActivityTypes(java.util.List activityTypes) { 57 | this.activityTypes = activityTypes; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalActivityTypes globalActivityTypes = (GlobalActivityTypes) o; 75 | return Objects.equals(this.activityTypes, globalActivityTypes.activityTypes); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(activityTypes); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalActivityTypes {\n"); 94 | 95 | sb.append(" activityTypes: ").append(toIndentedString(activityTypes)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalPropertyTypes.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.PropertyType; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalPropertyTypes. 13 | * 14 | */ 15 | 16 | public class GlobalPropertyTypes { 17 | @JsonProperty("propertyTypes") 18 | private java.util.List propertyTypes = null; 19 | 20 | 21 | /** 22 | * propertyTypes. 23 | * 24 | * @return GlobalPropertyTypes 25 | **/ 26 | public GlobalPropertyTypes propertyTypes(java.util.List propertyTypes) { 27 | this.propertyTypes = propertyTypes; 28 | return this; 29 | } 30 | 31 | /** 32 | * addPropertyTypesItem. 33 | * 34 | * @return GlobalPropertyTypes 35 | **/ 36 | public GlobalPropertyTypes addPropertyTypesItem(PropertyType propertyTypesItem) { 37 | if (this.propertyTypes == null) { 38 | this.propertyTypes = new java.util.ArrayList<>(); 39 | } 40 | this.propertyTypes.add(propertyTypesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get propertyTypes. 46 | * @return propertyTypes 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getPropertyTypes() { 50 | return propertyTypes; 51 | } 52 | 53 | /** 54 | * setPropertyTypes. 55 | **/ 56 | public void setPropertyTypes(java.util.List propertyTypes) { 57 | this.propertyTypes = propertyTypes; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalPropertyTypes globalPropertyTypes = (GlobalPropertyTypes) o; 75 | return Objects.equals(this.propertyTypes, globalPropertyTypes.propertyTypes); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(propertyTypes); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalPropertyTypes {\n"); 94 | 95 | sb.append(" propertyTypes: ").append(toIndentedString(propertyTypes)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalTaskDateTypes.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.TaskDateType; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalTaskDateTypes. 13 | * 14 | */ 15 | 16 | public class GlobalTaskDateTypes { 17 | @JsonProperty("taskDateTypes") 18 | private java.util.List taskDateTypes = null; 19 | 20 | 21 | /** 22 | * taskDateTypes. 23 | * 24 | * @return GlobalTaskDateTypes 25 | **/ 26 | public GlobalTaskDateTypes taskDateTypes(java.util.List taskDateTypes) { 27 | this.taskDateTypes = taskDateTypes; 28 | return this; 29 | } 30 | 31 | /** 32 | * addTaskDateTypesItem. 33 | * 34 | * @return GlobalTaskDateTypes 35 | **/ 36 | public GlobalTaskDateTypes addTaskDateTypesItem(TaskDateType taskDateTypesItem) { 37 | if (this.taskDateTypes == null) { 38 | this.taskDateTypes = new java.util.ArrayList<>(); 39 | } 40 | this.taskDateTypes.add(taskDateTypesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get taskDateTypes. 46 | * @return taskDateTypes 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getTaskDateTypes() { 50 | return taskDateTypes; 51 | } 52 | 53 | /** 54 | * setTaskDateTypes. 55 | **/ 56 | public void setTaskDateTypes(java.util.List taskDateTypes) { 57 | this.taskDateTypes = taskDateTypes; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalTaskDateTypes globalTaskDateTypes = (GlobalTaskDateTypes) o; 75 | return Objects.equals(this.taskDateTypes, globalTaskDateTypes.taskDateTypes); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(taskDateTypes); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalTaskDateTypes {\n"); 94 | 95 | sb.append(" taskDateTypes: ").append(toIndentedString(taskDateTypes)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/Currency.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * Currency. 12 | * 13 | */ 14 | 15 | public class Currency { 16 | @JsonProperty("currencyId") 17 | private String currencyId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * currencyId. 25 | * 26 | * @return Currency 27 | **/ 28 | public Currency currencyId(String currencyId) { 29 | this.currencyId = currencyId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get currencyId. 35 | * @return currencyId 36 | **/ 37 | @Schema(description = "") 38 | public String getCurrencyId() { 39 | return currencyId; 40 | } 41 | 42 | /** 43 | * setCurrencyId. 44 | **/ 45 | public void setCurrencyId(String currencyId) { 46 | this.currencyId = currencyId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return Currency 54 | **/ 55 | public Currency name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | Currency currency = (Currency) o; 91 | return Objects.equals(this.currencyId, currency.currencyId) && 92 | Objects.equals(this.name, currency.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(currencyId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class Currency {\n"); 111 | 112 | sb.append(" currencyId: ").append(toIndentedString(currencyId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/TimeZone.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * TimeZone. 12 | * 13 | */ 14 | 15 | public class TimeZone { 16 | @JsonProperty("timeZoneId") 17 | private String timeZoneId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * timeZoneId. 25 | * 26 | * @return TimeZone 27 | **/ 28 | public TimeZone timeZoneId(String timeZoneId) { 29 | this.timeZoneId = timeZoneId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get timeZoneId. 35 | * @return timeZoneId 36 | **/ 37 | @Schema(description = "") 38 | public String getTimeZoneId() { 39 | return timeZoneId; 40 | } 41 | 42 | /** 43 | * setTimeZoneId. 44 | **/ 45 | public void setTimeZoneId(String timeZoneId) { 46 | this.timeZoneId = timeZoneId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return TimeZone 54 | **/ 55 | public TimeZone name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | TimeZone timeZone = (TimeZone) o; 91 | return Objects.equals(this.timeZoneId, timeZone.timeZoneId) && 92 | Objects.equals(this.name, timeZone.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(timeZoneId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class TimeZone {\n"); 111 | 112 | sb.append(" timeZoneId: ").append(toIndentedString(timeZoneId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalOriginsOfLeads.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.OriginOfLead; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalOriginsOfLeads. 13 | * 14 | */ 15 | 16 | public class GlobalOriginsOfLeads { 17 | @JsonProperty("originsOfLeads") 18 | private java.util.List originsOfLeads = null; 19 | 20 | 21 | /** 22 | * originsOfLeads. 23 | * 24 | * @return GlobalOriginsOfLeads 25 | **/ 26 | public GlobalOriginsOfLeads originsOfLeads(java.util.List originsOfLeads) { 27 | this.originsOfLeads = originsOfLeads; 28 | return this; 29 | } 30 | 31 | /** 32 | * addOriginsOfLeadsItem. 33 | * 34 | * @return GlobalOriginsOfLeads 35 | **/ 36 | public GlobalOriginsOfLeads addOriginsOfLeadsItem(OriginOfLead originsOfLeadsItem) { 37 | if (this.originsOfLeads == null) { 38 | this.originsOfLeads = new java.util.ArrayList<>(); 39 | } 40 | this.originsOfLeads.add(originsOfLeadsItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get originsOfLeads. 46 | * @return originsOfLeads 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getOriginsOfLeads() { 50 | return originsOfLeads; 51 | } 52 | 53 | /** 54 | * setOriginsOfLeads. 55 | **/ 56 | public void setOriginsOfLeads(java.util.List originsOfLeads) { 57 | this.originsOfLeads = originsOfLeads; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalOriginsOfLeads globalOriginsOfLeads = (GlobalOriginsOfLeads) o; 75 | return Objects.equals(this.originsOfLeads, globalOriginsOfLeads.originsOfLeads); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(originsOfLeads); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalOriginsOfLeads {\n"); 94 | 95 | sb.append(" originsOfLeads: ").append(toIndentedString(originsOfLeads)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalFinancingTypes.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.FinancingType; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalFinancingTypes. 13 | * 14 | */ 15 | 16 | public class GlobalFinancingTypes { 17 | @JsonProperty("financingTypes") 18 | private java.util.List financingTypes = null; 19 | 20 | 21 | /** 22 | * financingTypes. 23 | * 24 | * @return GlobalFinancingTypes 25 | **/ 26 | public GlobalFinancingTypes financingTypes(java.util.List financingTypes) { 27 | this.financingTypes = financingTypes; 28 | return this; 29 | } 30 | 31 | /** 32 | * addFinancingTypesItem. 33 | * 34 | * @return GlobalFinancingTypes 35 | **/ 36 | public GlobalFinancingTypes addFinancingTypesItem(FinancingType financingTypesItem) { 37 | if (this.financingTypes == null) { 38 | this.financingTypes = new java.util.ArrayList<>(); 39 | } 40 | this.financingTypes.add(financingTypesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get financingTypes. 46 | * @return financingTypes 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getFinancingTypes() { 50 | return financingTypes; 51 | } 52 | 53 | /** 54 | * setFinancingTypes. 55 | **/ 56 | public void setFinancingTypes(java.util.List financingTypes) { 57 | this.financingTypes = financingTypes; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalFinancingTypes globalFinancingTypes = (GlobalFinancingTypes) o; 75 | return Objects.equals(this.financingTypes, globalFinancingTypes.financingTypes); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(financingTypes); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalFinancingTypes {\n"); 94 | 95 | sb.append(" financingTypes: ").append(toIndentedString(financingTypes)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/TaskStatus.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * TaskStatus. 12 | * 13 | */ 14 | 15 | public class TaskStatus { 16 | @JsonProperty("taskStatusId") 17 | private String taskStatusId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * taskStatusId. 25 | * 26 | * @return TaskStatus 27 | **/ 28 | public TaskStatus taskStatusId(String taskStatusId) { 29 | this.taskStatusId = taskStatusId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get taskStatusId. 35 | * @return taskStatusId 36 | **/ 37 | @Schema(description = "") 38 | public String getTaskStatusId() { 39 | return taskStatusId; 40 | } 41 | 42 | /** 43 | * setTaskStatusId. 44 | **/ 45 | public void setTaskStatusId(String taskStatusId) { 46 | this.taskStatusId = taskStatusId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return TaskStatus 54 | **/ 55 | public TaskStatus name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | TaskStatus taskStatus = (TaskStatus) o; 91 | return Objects.equals(this.taskStatusId, taskStatus.taskStatusId) && 92 | Objects.equals(this.name, taskStatus.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(taskStatusId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class TaskStatus {\n"); 111 | 112 | sb.append(" taskStatusId: ").append(toIndentedString(taskStatusId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalClosingStatuses.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.ClosingStatus; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalClosingStatuses. 13 | * 14 | */ 15 | 16 | public class GlobalClosingStatuses { 17 | @JsonProperty("closingStatuses") 18 | private java.util.List closingStatuses = null; 19 | 20 | 21 | /** 22 | * closingStatuses. 23 | * 24 | * @return GlobalClosingStatuses 25 | **/ 26 | public GlobalClosingStatuses closingStatuses(java.util.List closingStatuses) { 27 | this.closingStatuses = closingStatuses; 28 | return this; 29 | } 30 | 31 | /** 32 | * addClosingStatusesItem. 33 | * 34 | * @return GlobalClosingStatuses 35 | **/ 36 | public GlobalClosingStatuses addClosingStatusesItem(ClosingStatus closingStatusesItem) { 37 | if (this.closingStatuses == null) { 38 | this.closingStatuses = new java.util.ArrayList<>(); 39 | } 40 | this.closingStatuses.add(closingStatusesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get closingStatuses. 46 | * @return closingStatuses 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getClosingStatuses() { 50 | return closingStatuses; 51 | } 52 | 53 | /** 54 | * setClosingStatuses. 55 | **/ 56 | public void setClosingStatuses(java.util.List closingStatuses) { 57 | this.closingStatuses = closingStatuses; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalClosingStatuses globalClosingStatuses = (GlobalClosingStatuses) o; 75 | return Objects.equals(this.closingStatuses, globalClosingStatuses.closingStatuses); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(closingStatuses); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalClosingStatuses {\n"); 94 | 95 | sb.append(" closingStatuses: ").append(toIndentedString(closingStatuses)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/ContactSide.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * ContactSide. 12 | * 13 | */ 14 | 15 | public class ContactSide { 16 | @JsonProperty("contactSideId") 17 | private String contactSideId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * contactSideId. 25 | * 26 | * @return ContactSide 27 | **/ 28 | public ContactSide contactSideId(String contactSideId) { 29 | this.contactSideId = contactSideId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get contactSideId. 35 | * @return contactSideId 36 | **/ 37 | @Schema(description = "") 38 | public String getContactSideId() { 39 | return contactSideId; 40 | } 41 | 42 | /** 43 | * setContactSideId. 44 | **/ 45 | public void setContactSideId(String contactSideId) { 46 | this.contactSideId = contactSideId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return ContactSide 54 | **/ 55 | public ContactSide name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | ContactSide contactSide = (ContactSide) o; 91 | return Objects.equals(this.contactSideId, contactSide.contactSideId) && 92 | Objects.equals(this.name, contactSide.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(contactSideId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class ContactSide {\n"); 111 | 112 | sb.append(" contactSideId: ").append(toIndentedString(contactSideId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/TaskListSummaryList.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.TaskListSummary; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * TaskListSummaryList. 13 | * 14 | */ 15 | 16 | public class TaskListSummaryList { 17 | @JsonProperty("taskListSummaries") 18 | private java.util.List taskListSummaries = null; 19 | 20 | 21 | /** 22 | * taskListSummaries. 23 | * 24 | * @return TaskListSummaryList 25 | **/ 26 | public TaskListSummaryList taskListSummaries(java.util.List taskListSummaries) { 27 | this.taskListSummaries = taskListSummaries; 28 | return this; 29 | } 30 | 31 | /** 32 | * addTaskListSummariesItem. 33 | * 34 | * @return TaskListSummaryList 35 | **/ 36 | public TaskListSummaryList addTaskListSummariesItem(TaskListSummary taskListSummariesItem) { 37 | if (this.taskListSummaries == null) { 38 | this.taskListSummaries = new java.util.ArrayList<>(); 39 | } 40 | this.taskListSummaries.add(taskListSummariesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get taskListSummaries. 46 | * @return taskListSummaries 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getTaskListSummaries() { 50 | return taskListSummaries; 51 | } 52 | 53 | /** 54 | * setTaskListSummaries. 55 | **/ 56 | public void setTaskListSummaries(java.util.List taskListSummaries) { 57 | this.taskListSummaries = taskListSummaries; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | TaskListSummaryList taskListSummaryList = (TaskListSummaryList) o; 75 | return Objects.equals(this.taskListSummaries, taskListSummaryList.taskListSummaries); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(taskListSummaries); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class TaskListSummaryList {\n"); 94 | 95 | sb.append(" taskListSummaries: ").append(toIndentedString(taskListSummaries)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/ActivityType.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * ActivityType. 12 | * 13 | */ 14 | 15 | public class ActivityType { 16 | @JsonProperty("activityTypeId") 17 | private String activityTypeId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * activityTypeId. 25 | * 26 | * @return ActivityType 27 | **/ 28 | public ActivityType activityTypeId(String activityTypeId) { 29 | this.activityTypeId = activityTypeId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get activityTypeId. 35 | * @return activityTypeId 36 | **/ 37 | @Schema(description = "") 38 | public String getActivityTypeId() { 39 | return activityTypeId; 40 | } 41 | 42 | /** 43 | * setActivityTypeId. 44 | **/ 45 | public void setActivityTypeId(String activityTypeId) { 46 | this.activityTypeId = activityTypeId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return ActivityType 54 | **/ 55 | public ActivityType name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | ActivityType activityType = (ActivityType) o; 91 | return Objects.equals(this.activityTypeId, activityType.activityTypeId) && 92 | Objects.equals(this.name, activityType.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(activityTypeId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class ActivityType {\n"); 111 | 112 | sb.append(" activityTypeId: ").append(toIndentedString(activityTypeId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalRoomContactTypes.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.RoomContactType; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalRoomContactTypes. 13 | * 14 | */ 15 | 16 | public class GlobalRoomContactTypes { 17 | @JsonProperty("roomContactTypes") 18 | private java.util.List roomContactTypes = null; 19 | 20 | 21 | /** 22 | * roomContactTypes. 23 | * 24 | * @return GlobalRoomContactTypes 25 | **/ 26 | public GlobalRoomContactTypes roomContactTypes(java.util.List roomContactTypes) { 27 | this.roomContactTypes = roomContactTypes; 28 | return this; 29 | } 30 | 31 | /** 32 | * addRoomContactTypesItem. 33 | * 34 | * @return GlobalRoomContactTypes 35 | **/ 36 | public GlobalRoomContactTypes addRoomContactTypesItem(RoomContactType roomContactTypesItem) { 37 | if (this.roomContactTypes == null) { 38 | this.roomContactTypes = new java.util.ArrayList<>(); 39 | } 40 | this.roomContactTypes.add(roomContactTypesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get roomContactTypes. 46 | * @return roomContactTypes 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getRoomContactTypes() { 50 | return roomContactTypes; 51 | } 52 | 53 | /** 54 | * setRoomContactTypes. 55 | **/ 56 | public void setRoomContactTypes(java.util.List roomContactTypes) { 57 | this.roomContactTypes = roomContactTypes; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalRoomContactTypes globalRoomContactTypes = (GlobalRoomContactTypes) o; 75 | return Objects.equals(this.roomContactTypes, globalRoomContactTypes.roomContactTypes); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(roomContactTypes); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalRoomContactTypes {\n"); 94 | 95 | sb.append(" roomContactTypes: ").append(toIndentedString(roomContactTypes)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalTransactionSides.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.TransactionSide; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalTransactionSides. 13 | * 14 | */ 15 | 16 | public class GlobalTransactionSides { 17 | @JsonProperty("transactionSides") 18 | private java.util.List transactionSides = null; 19 | 20 | 21 | /** 22 | * transactionSides. 23 | * 24 | * @return GlobalTransactionSides 25 | **/ 26 | public GlobalTransactionSides transactionSides(java.util.List transactionSides) { 27 | this.transactionSides = transactionSides; 28 | return this; 29 | } 30 | 31 | /** 32 | * addTransactionSidesItem. 33 | * 34 | * @return GlobalTransactionSides 35 | **/ 36 | public GlobalTransactionSides addTransactionSidesItem(TransactionSide transactionSidesItem) { 37 | if (this.transactionSides == null) { 38 | this.transactionSides = new java.util.ArrayList<>(); 39 | } 40 | this.transactionSides.add(transactionSidesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get transactionSides. 46 | * @return transactionSides 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getTransactionSides() { 50 | return transactionSides; 51 | } 52 | 53 | /** 54 | * setTransactionSides. 55 | **/ 56 | public void setTransactionSides(java.util.List transactionSides) { 57 | this.transactionSides = transactionSides; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalTransactionSides globalTransactionSides = (GlobalTransactionSides) o; 75 | return Objects.equals(this.transactionSides, globalTransactionSides.transactionSides); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(transactionSides); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalTransactionSides {\n"); 94 | 95 | sb.append(" transactionSides: ").append(toIndentedString(transactionSides)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/OriginOfLead.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * OriginOfLead. 12 | * 13 | */ 14 | 15 | public class OriginOfLead { 16 | @JsonProperty("originOfLeadId") 17 | private String originOfLeadId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * originOfLeadId. 25 | * 26 | * @return OriginOfLead 27 | **/ 28 | public OriginOfLead originOfLeadId(String originOfLeadId) { 29 | this.originOfLeadId = originOfLeadId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get originOfLeadId. 35 | * @return originOfLeadId 36 | **/ 37 | @Schema(description = "") 38 | public String getOriginOfLeadId() { 39 | return originOfLeadId; 40 | } 41 | 42 | /** 43 | * setOriginOfLeadId. 44 | **/ 45 | public void setOriginOfLeadId(String originOfLeadId) { 46 | this.originOfLeadId = originOfLeadId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return OriginOfLead 54 | **/ 55 | public OriginOfLead name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | OriginOfLead originOfLead = (OriginOfLead) o; 91 | return Objects.equals(this.originOfLeadId, originOfLead.originOfLeadId) && 92 | Objects.equals(this.name, originOfLead.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(originOfLeadId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class OriginOfLead {\n"); 111 | 112 | sb.append(" originOfLeadId: ").append(toIndentedString(originOfLeadId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/PropertyType.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * PropertyType. 12 | * 13 | */ 14 | 15 | public class PropertyType { 16 | @JsonProperty("propertyTypeId") 17 | private String propertyTypeId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * propertyTypeId. 25 | * 26 | * @return PropertyType 27 | **/ 28 | public PropertyType propertyTypeId(String propertyTypeId) { 29 | this.propertyTypeId = propertyTypeId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get propertyTypeId. 35 | * @return propertyTypeId 36 | **/ 37 | @Schema(description = "") 38 | public String getPropertyTypeId() { 39 | return propertyTypeId; 40 | } 41 | 42 | /** 43 | * setPropertyTypeId. 44 | **/ 45 | public void setPropertyTypeId(String propertyTypeId) { 46 | this.propertyTypeId = propertyTypeId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return PropertyType 54 | **/ 55 | public PropertyType name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | PropertyType propertyType = (PropertyType) o; 91 | return Objects.equals(this.propertyTypeId, propertyType.propertyTypeId) && 92 | Objects.equals(this.name, propertyType.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(propertyTypeId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class PropertyType {\n"); 111 | 112 | sb.append(" propertyTypeId: ").append(toIndentedString(propertyTypeId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/TaskDateType.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * TaskDateType. 12 | * 13 | */ 14 | 15 | public class TaskDateType { 16 | @JsonProperty("taskDateTypeId") 17 | private String taskDateTypeId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * taskDateTypeId. 25 | * 26 | * @return TaskDateType 27 | **/ 28 | public TaskDateType taskDateTypeId(String taskDateTypeId) { 29 | this.taskDateTypeId = taskDateTypeId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get taskDateTypeId. 35 | * @return taskDateTypeId 36 | **/ 37 | @Schema(description = "") 38 | public String getTaskDateTypeId() { 39 | return taskDateTypeId; 40 | } 41 | 42 | /** 43 | * setTaskDateTypeId. 44 | **/ 45 | public void setTaskDateTypeId(String taskDateTypeId) { 46 | this.taskDateTypeId = taskDateTypeId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return TaskDateType 54 | **/ 55 | public TaskDateType name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | TaskDateType taskDateType = (TaskDateType) o; 91 | return Objects.equals(this.taskDateTypeId, taskDateType.taskDateTypeId) && 92 | Objects.equals(this.name, taskDateType.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(taskDateTypeId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class TaskDateType {\n"); 111 | 112 | sb.append(" taskDateTypeId: ").append(toIndentedString(taskDateTypeId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/RegionReferenceCountList.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.RegionReferenceCount; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * RegionReferenceCountList. 13 | * 14 | */ 15 | 16 | public class RegionReferenceCountList { 17 | @JsonProperty("referenceCounts") 18 | private java.util.List referenceCounts = null; 19 | 20 | 21 | /** 22 | * referenceCounts. 23 | * 24 | * @return RegionReferenceCountList 25 | **/ 26 | public RegionReferenceCountList referenceCounts(java.util.List referenceCounts) { 27 | this.referenceCounts = referenceCounts; 28 | return this; 29 | } 30 | 31 | /** 32 | * addReferenceCountsItem. 33 | * 34 | * @return RegionReferenceCountList 35 | **/ 36 | public RegionReferenceCountList addReferenceCountsItem(RegionReferenceCount referenceCountsItem) { 37 | if (this.referenceCounts == null) { 38 | this.referenceCounts = new java.util.ArrayList<>(); 39 | } 40 | this.referenceCounts.add(referenceCountsItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get referenceCounts. 46 | * @return referenceCounts 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getReferenceCounts() { 50 | return referenceCounts; 51 | } 52 | 53 | /** 54 | * setReferenceCounts. 55 | **/ 56 | public void setReferenceCounts(java.util.List referenceCounts) { 57 | this.referenceCounts = referenceCounts; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | RegionReferenceCountList regionReferenceCountList = (RegionReferenceCountList) o; 75 | return Objects.equals(this.referenceCounts, regionReferenceCountList.referenceCounts); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(referenceCounts); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class RegionReferenceCountList {\n"); 94 | 95 | sb.append(" referenceCounts: ").append(toIndentedString(referenceCounts)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/ClosingStatus.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * ClosingStatus. 12 | * 13 | */ 14 | 15 | public class ClosingStatus { 16 | @JsonProperty("closingStatusId") 17 | private String closingStatusId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * closingStatusId. 25 | * 26 | * @return ClosingStatus 27 | **/ 28 | public ClosingStatus closingStatusId(String closingStatusId) { 29 | this.closingStatusId = closingStatusId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get closingStatusId. 35 | * @return closingStatusId 36 | **/ 37 | @Schema(description = "") 38 | public String getClosingStatusId() { 39 | return closingStatusId; 40 | } 41 | 42 | /** 43 | * setClosingStatusId. 44 | **/ 45 | public void setClosingStatusId(String closingStatusId) { 46 | this.closingStatusId = closingStatusId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return ClosingStatus 54 | **/ 55 | public ClosingStatus name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | ClosingStatus closingStatus = (ClosingStatus) o; 91 | return Objects.equals(this.closingStatusId, closingStatus.closingStatusId) && 92 | Objects.equals(this.name, closingStatus.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(closingStatusId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class ClosingStatus {\n"); 111 | 112 | sb.append(" closingStatusId: ").append(toIndentedString(closingStatusId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/FinancingType.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * FinancingType. 12 | * 13 | */ 14 | 15 | public class FinancingType { 16 | @JsonProperty("financingTypeId") 17 | private String financingTypeId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * financingTypeId. 25 | * 26 | * @return FinancingType 27 | **/ 28 | public FinancingType financingTypeId(String financingTypeId) { 29 | this.financingTypeId = financingTypeId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get financingTypeId. 35 | * @return financingTypeId 36 | **/ 37 | @Schema(description = "") 38 | public String getFinancingTypeId() { 39 | return financingTypeId; 40 | } 41 | 42 | /** 43 | * setFinancingTypeId. 44 | **/ 45 | public void setFinancingTypeId(String financingTypeId) { 46 | this.financingTypeId = financingTypeId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return FinancingType 54 | **/ 55 | public FinancingType name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | FinancingType financingType = (FinancingType) o; 91 | return Objects.equals(this.financingTypeId, financingType.financingTypeId) && 92 | Objects.equals(this.name, financingType.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(financingTypeId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class FinancingType {\n"); 111 | 112 | sb.append(" financingTypeId: ").append(toIndentedString(financingTypeId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/OfficeReferenceCountList.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.OfficeReferenceCount; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * OfficeReferenceCountList. 13 | * 14 | */ 15 | 16 | public class OfficeReferenceCountList { 17 | @JsonProperty("referencesCounts") 18 | private java.util.List referencesCounts = null; 19 | 20 | 21 | /** 22 | * referencesCounts. 23 | * 24 | * @return OfficeReferenceCountList 25 | **/ 26 | public OfficeReferenceCountList referencesCounts(java.util.List referencesCounts) { 27 | this.referencesCounts = referencesCounts; 28 | return this; 29 | } 30 | 31 | /** 32 | * addReferencesCountsItem. 33 | * 34 | * @return OfficeReferenceCountList 35 | **/ 36 | public OfficeReferenceCountList addReferencesCountsItem(OfficeReferenceCount referencesCountsItem) { 37 | if (this.referencesCounts == null) { 38 | this.referencesCounts = new java.util.ArrayList<>(); 39 | } 40 | this.referencesCounts.add(referencesCountsItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get referencesCounts. 46 | * @return referencesCounts 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getReferencesCounts() { 50 | return referencesCounts; 51 | } 52 | 53 | /** 54 | * setReferencesCounts. 55 | **/ 56 | public void setReferencesCounts(java.util.List referencesCounts) { 57 | this.referencesCounts = referencesCounts; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | OfficeReferenceCountList officeReferenceCountList = (OfficeReferenceCountList) o; 75 | return Objects.equals(this.referencesCounts, officeReferenceCountList.referencesCounts); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(referencesCounts); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class OfficeReferenceCountList {\n"); 94 | 95 | sb.append(" referencesCounts: ").append(toIndentedString(referencesCounts)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/TransactionSide.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * TransactionSide. 12 | * 13 | */ 14 | 15 | public class TransactionSide { 16 | @JsonProperty("transactionSideId") 17 | private String transactionSideId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * transactionSideId. 25 | * 26 | * @return TransactionSide 27 | **/ 28 | public TransactionSide transactionSideId(String transactionSideId) { 29 | this.transactionSideId = transactionSideId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get transactionSideId. 35 | * @return transactionSideId 36 | **/ 37 | @Schema(description = "") 38 | public String getTransactionSideId() { 39 | return transactionSideId; 40 | } 41 | 42 | /** 43 | * setTransactionSideId. 44 | **/ 45 | public void setTransactionSideId(String transactionSideId) { 46 | this.transactionSideId = transactionSideId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return TransactionSide 54 | **/ 55 | public TransactionSide name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | TransactionSide transactionSide = (TransactionSide) o; 91 | return Objects.equals(this.transactionSideId, transactionSide.transactionSideId) && 92 | Objects.equals(this.name, transactionSide.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(transactionSideId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class TransactionSide {\n"); 111 | 112 | sb.append(" transactionSideId: ").append(toIndentedString(transactionSideId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/FormGroupFormToAssign.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * FormGroupFormToAssign. 12 | * 13 | */ 14 | 15 | public class FormGroupFormToAssign { 16 | @JsonProperty("formId") 17 | private java.util.UUID formId = null; 18 | 19 | @JsonProperty("isRequired") 20 | private Boolean isRequired = null; 21 | 22 | 23 | /** 24 | * formId. 25 | * 26 | * @return FormGroupFormToAssign 27 | **/ 28 | public FormGroupFormToAssign formId(java.util.UUID formId) { 29 | this.formId = formId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get formId. 35 | * @return formId 36 | **/ 37 | @Schema(required = true, description = "") 38 | public java.util.UUID getFormId() { 39 | return formId; 40 | } 41 | 42 | /** 43 | * setFormId. 44 | **/ 45 | public void setFormId(java.util.UUID formId) { 46 | this.formId = formId; 47 | } 48 | 49 | 50 | /** 51 | * isRequired. 52 | * 53 | * @return FormGroupFormToAssign 54 | **/ 55 | public FormGroupFormToAssign isRequired(Boolean isRequired) { 56 | this.isRequired = isRequired; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get isRequired. 62 | * @return isRequired 63 | **/ 64 | @Schema(description = "") 65 | public Boolean isIsRequired() { 66 | return isRequired; 67 | } 68 | 69 | /** 70 | * setIsRequired. 71 | **/ 72 | public void setIsRequired(Boolean isRequired) { 73 | this.isRequired = isRequired; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | FormGroupFormToAssign formGroupFormToAssign = (FormGroupFormToAssign) o; 91 | return Objects.equals(this.formId, formGroupFormToAssign.formId) && 92 | Objects.equals(this.isRequired, formGroupFormToAssign.isRequired); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(formId, isRequired); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class FormGroupFormToAssign {\n"); 111 | 112 | sb.append(" formId: ").append(toIndentedString(formId)).append("\n"); 113 | sb.append(" isRequired: ").append(toIndentedString(isRequired)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/GlobalSellerDecisionTypes.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.SellerDecisionType; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * GlobalSellerDecisionTypes. 13 | * 14 | */ 15 | 16 | public class GlobalSellerDecisionTypes { 17 | @JsonProperty("sellerDecisionTypes") 18 | private java.util.List sellerDecisionTypes = null; 19 | 20 | 21 | /** 22 | * sellerDecisionTypes. 23 | * 24 | * @return GlobalSellerDecisionTypes 25 | **/ 26 | public GlobalSellerDecisionTypes sellerDecisionTypes(java.util.List sellerDecisionTypes) { 27 | this.sellerDecisionTypes = sellerDecisionTypes; 28 | return this; 29 | } 30 | 31 | /** 32 | * addSellerDecisionTypesItem. 33 | * 34 | * @return GlobalSellerDecisionTypes 35 | **/ 36 | public GlobalSellerDecisionTypes addSellerDecisionTypesItem(SellerDecisionType sellerDecisionTypesItem) { 37 | if (this.sellerDecisionTypes == null) { 38 | this.sellerDecisionTypes = new java.util.ArrayList<>(); 39 | } 40 | this.sellerDecisionTypes.add(sellerDecisionTypesItem); 41 | return this; 42 | } 43 | 44 | /** 45 | * Get sellerDecisionTypes. 46 | * @return sellerDecisionTypes 47 | **/ 48 | @Schema(description = "") 49 | public java.util.List getSellerDecisionTypes() { 50 | return sellerDecisionTypes; 51 | } 52 | 53 | /** 54 | * setSellerDecisionTypes. 55 | **/ 56 | public void setSellerDecisionTypes(java.util.List sellerDecisionTypes) { 57 | this.sellerDecisionTypes = sellerDecisionTypes; 58 | } 59 | 60 | 61 | /** 62 | * Compares objects. 63 | * 64 | * @return true or false depending on comparison result. 65 | */ 66 | @Override 67 | public boolean equals(java.lang.Object o) { 68 | if (this == o) { 69 | return true; 70 | } 71 | if (o == null || getClass() != o.getClass()) { 72 | return false; 73 | } 74 | GlobalSellerDecisionTypes globalSellerDecisionTypes = (GlobalSellerDecisionTypes) o; 75 | return Objects.equals(this.sellerDecisionTypes, globalSellerDecisionTypes.sellerDecisionTypes); 76 | } 77 | 78 | /** 79 | * Returns the HashCode. 80 | */ 81 | @Override 82 | public int hashCode() { 83 | return Objects.hash(sellerDecisionTypes); 84 | } 85 | 86 | 87 | /** 88 | * Converts the given object to string. 89 | */ 90 | @Override 91 | public String toString() { 92 | StringBuilder sb = new StringBuilder(); 93 | sb.append("class GlobalSellerDecisionTypes {\n"); 94 | 95 | sb.append(" sellerDecisionTypes: ").append(toIndentedString(sellerDecisionTypes)).append("\n"); 96 | sb.append("}"); 97 | return sb.toString(); 98 | } 99 | 100 | /** 101 | * Convert the given object to string with each line indented by 4 spaces 102 | * (except the first line). 103 | */ 104 | private String toIndentedString(java.lang.Object o) { 105 | if (o == null) { 106 | return "null"; 107 | } 108 | return o.toString().replace("\n", "\n "); 109 | } 110 | 111 | } 112 | 113 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/FormGroup.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.docusign.rooms.model.GroupForm; 6 | import com.fasterxml.jackson.annotation.JsonProperty; 7 | import com.fasterxml.jackson.annotation.JsonCreator; 8 | import com.fasterxml.jackson.annotation.JsonValue; 9 | import io.swagger.v3.oas.annotations.media.Schema; 10 | 11 | /** 12 | * FormGroup. 13 | * 14 | */ 15 | 16 | public class FormGroup { 17 | @JsonProperty("formGroupId") 18 | private java.util.UUID formGroupId = null; 19 | 20 | @JsonProperty("name") 21 | private String name = null; 22 | 23 | @JsonProperty("officeIds") 24 | private java.util.List officeIds = null; 25 | 26 | @JsonProperty("forms") 27 | private java.util.List forms = null; 28 | 29 | /** 30 | * Get formGroupId. 31 | * @return formGroupId 32 | **/ 33 | @Schema(description = "") 34 | public java.util.UUID getFormGroupId() { 35 | return formGroupId; 36 | } 37 | 38 | /** 39 | * Get name. 40 | * @return name 41 | **/ 42 | @Schema(description = "") 43 | public String getName() { 44 | return name; 45 | } 46 | 47 | /** 48 | * Get officeIds. 49 | * @return officeIds 50 | **/ 51 | @Schema(description = "") 52 | public java.util.List getOfficeIds() { 53 | return officeIds; 54 | } 55 | 56 | /** 57 | * Get forms. 58 | * @return forms 59 | **/ 60 | @Schema(description = "") 61 | public java.util.List getForms() { 62 | return forms; 63 | } 64 | 65 | 66 | /** 67 | * Compares objects. 68 | * 69 | * @return true or false depending on comparison result. 70 | */ 71 | @Override 72 | public boolean equals(java.lang.Object o) { 73 | if (this == o) { 74 | return true; 75 | } 76 | if (o == null || getClass() != o.getClass()) { 77 | return false; 78 | } 79 | FormGroup formGroup = (FormGroup) o; 80 | return Objects.equals(this.formGroupId, formGroup.formGroupId) && 81 | Objects.equals(this.name, formGroup.name) && 82 | Objects.equals(this.officeIds, formGroup.officeIds) && 83 | Objects.equals(this.forms, formGroup.forms); 84 | } 85 | 86 | /** 87 | * Returns the HashCode. 88 | */ 89 | @Override 90 | public int hashCode() { 91 | return Objects.hash(formGroupId, name, officeIds, forms); 92 | } 93 | 94 | 95 | /** 96 | * Converts the given object to string. 97 | */ 98 | @Override 99 | public String toString() { 100 | StringBuilder sb = new StringBuilder(); 101 | sb.append("class FormGroup {\n"); 102 | 103 | sb.append(" formGroupId: ").append(toIndentedString(formGroupId)).append("\n"); 104 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 105 | sb.append(" officeIds: ").append(toIndentedString(officeIds)).append("\n"); 106 | sb.append(" forms: ").append(toIndentedString(forms)).append("\n"); 107 | sb.append("}"); 108 | return sb.toString(); 109 | } 110 | 111 | /** 112 | * Convert the given object to string with each line indented by 4 spaces 113 | * (except the first line). 114 | */ 115 | private String toIndentedString(java.lang.Object o) { 116 | if (o == null) { 117 | return "null"; 118 | } 119 | return o.toString().replace("\n", "\n "); 120 | } 121 | 122 | } 123 | 124 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/RoomUserForUpdate.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * RoomUserForUpdate. 12 | * 13 | */ 14 | 15 | public class RoomUserForUpdate { 16 | @JsonProperty("roleId") 17 | private Integer roleId = null; 18 | 19 | @JsonProperty("transactionSideId") 20 | private String transactionSideId = null; 21 | 22 | 23 | /** 24 | * roleId. 25 | * 26 | * @return RoomUserForUpdate 27 | **/ 28 | public RoomUserForUpdate roleId(Integer roleId) { 29 | this.roleId = roleId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get roleId. 35 | * @return roleId 36 | **/ 37 | @Schema(description = "") 38 | public Integer getRoleId() { 39 | return roleId; 40 | } 41 | 42 | /** 43 | * setRoleId. 44 | **/ 45 | public void setRoleId(Integer roleId) { 46 | this.roleId = roleId; 47 | } 48 | 49 | 50 | /** 51 | * transactionSideId. 52 | * 53 | * @return RoomUserForUpdate 54 | **/ 55 | public RoomUserForUpdate transactionSideId(String transactionSideId) { 56 | this.transactionSideId = transactionSideId; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get transactionSideId. 62 | * @return transactionSideId 63 | **/ 64 | @Schema(description = "") 65 | public String getTransactionSideId() { 66 | return transactionSideId; 67 | } 68 | 69 | /** 70 | * setTransactionSideId. 71 | **/ 72 | public void setTransactionSideId(String transactionSideId) { 73 | this.transactionSideId = transactionSideId; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | RoomUserForUpdate roomUserForUpdate = (RoomUserForUpdate) o; 91 | return Objects.equals(this.roleId, roomUserForUpdate.roleId) && 92 | Objects.equals(this.transactionSideId, roomUserForUpdate.transactionSideId); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(roleId, transactionSideId); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class RoomUserForUpdate {\n"); 111 | 112 | sb.append(" roleId: ").append(toIndentedString(roleId)).append("\n"); 113 | sb.append(" transactionSideId: ").append(toIndentedString(transactionSideId)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | -------------------------------------------------------------------------------- /src/main/java/com/docusign/rooms/model/SellerDecisionType.java: -------------------------------------------------------------------------------- 1 | package com.docusign.rooms.model; 2 | 3 | import java.util.Objects; 4 | import java.util.Arrays; 5 | import com.fasterxml.jackson.annotation.JsonProperty; 6 | import com.fasterxml.jackson.annotation.JsonCreator; 7 | import com.fasterxml.jackson.annotation.JsonValue; 8 | import io.swagger.v3.oas.annotations.media.Schema; 9 | 10 | /** 11 | * SellerDecisionType. 12 | * 13 | */ 14 | 15 | public class SellerDecisionType { 16 | @JsonProperty("sellerDecisionTypeId") 17 | private String sellerDecisionTypeId = null; 18 | 19 | @JsonProperty("name") 20 | private String name = null; 21 | 22 | 23 | /** 24 | * sellerDecisionTypeId. 25 | * 26 | * @return SellerDecisionType 27 | **/ 28 | public SellerDecisionType sellerDecisionTypeId(String sellerDecisionTypeId) { 29 | this.sellerDecisionTypeId = sellerDecisionTypeId; 30 | return this; 31 | } 32 | 33 | /** 34 | * Get sellerDecisionTypeId. 35 | * @return sellerDecisionTypeId 36 | **/ 37 | @Schema(description = "") 38 | public String getSellerDecisionTypeId() { 39 | return sellerDecisionTypeId; 40 | } 41 | 42 | /** 43 | * setSellerDecisionTypeId. 44 | **/ 45 | public void setSellerDecisionTypeId(String sellerDecisionTypeId) { 46 | this.sellerDecisionTypeId = sellerDecisionTypeId; 47 | } 48 | 49 | 50 | /** 51 | * name. 52 | * 53 | * @return SellerDecisionType 54 | **/ 55 | public SellerDecisionType name(String name) { 56 | this.name = name; 57 | return this; 58 | } 59 | 60 | /** 61 | * Get name. 62 | * @return name 63 | **/ 64 | @Schema(description = "") 65 | public String getName() { 66 | return name; 67 | } 68 | 69 | /** 70 | * setName. 71 | **/ 72 | public void setName(String name) { 73 | this.name = name; 74 | } 75 | 76 | 77 | /** 78 | * Compares objects. 79 | * 80 | * @return true or false depending on comparison result. 81 | */ 82 | @Override 83 | public boolean equals(java.lang.Object o) { 84 | if (this == o) { 85 | return true; 86 | } 87 | if (o == null || getClass() != o.getClass()) { 88 | return false; 89 | } 90 | SellerDecisionType sellerDecisionType = (SellerDecisionType) o; 91 | return Objects.equals(this.sellerDecisionTypeId, sellerDecisionType.sellerDecisionTypeId) && 92 | Objects.equals(this.name, sellerDecisionType.name); 93 | } 94 | 95 | /** 96 | * Returns the HashCode. 97 | */ 98 | @Override 99 | public int hashCode() { 100 | return Objects.hash(sellerDecisionTypeId, name); 101 | } 102 | 103 | 104 | /** 105 | * Converts the given object to string. 106 | */ 107 | @Override 108 | public String toString() { 109 | StringBuilder sb = new StringBuilder(); 110 | sb.append("class SellerDecisionType {\n"); 111 | 112 | sb.append(" sellerDecisionTypeId: ").append(toIndentedString(sellerDecisionTypeId)).append("\n"); 113 | sb.append(" name: ").append(toIndentedString(name)).append("\n"); 114 | sb.append("}"); 115 | return sb.toString(); 116 | } 117 | 118 | /** 119 | * Convert the given object to string with each line indented by 4 spaces 120 | * (except the first line). 121 | */ 122 | private String toIndentedString(java.lang.Object o) { 123 | if (o == null) { 124 | return "null"; 125 | } 126 | return o.toString().replace("\n", "\n "); 127 | } 128 | 129 | } 130 | 131 | --------------------------------------------------------------------------------