@@ -100,6 +100,9 @@ public class ConnectCustomConfiguration implements Serializable {
100100 @ JsonProperty ("password" )
101101 private String password = null ;
102102
103+ @ JsonProperty ("pausePublish" )
104+ private String pausePublish = null ;
105+
103106 @ JsonProperty ("recipientEvents" )
104107 private java .util .List <String > recipientEvents = null ;
105108
@@ -917,6 +920,33 @@ public void setPassword(String password) {
917920 }
918921
919922
923+ /**
924+ * pausePublish.
925+ *
926+ * @return ConnectCustomConfiguration
927+ **/
928+ public ConnectCustomConfiguration pausePublish (String pausePublish ) {
929+ this .pausePublish = pausePublish ;
930+ return this ;
931+ }
932+
933+ /**
934+ * .
935+ * @return pausePublish
936+ **/
937+ @ Schema (description = "" )
938+ public String getPausePublish () {
939+ return pausePublish ;
940+ }
941+
942+ /**
943+ * setPausePublish.
944+ **/
945+ public void setPausePublish (String pausePublish ) {
946+ this .pausePublish = pausePublish ;
947+ }
948+
949+
920950 /**
921951 * recipientEvents.
922952 *
@@ -1442,6 +1472,7 @@ public boolean equals(java.lang.Object o) {
14421472 Objects .equals (this .integratorManaged , connectCustomConfiguration .integratorManaged ) &&
14431473 Objects .equals (this .name , connectCustomConfiguration .name ) &&
14441474 Objects .equals (this .password , connectCustomConfiguration .password ) &&
1475+ Objects .equals (this .pausePublish , connectCustomConfiguration .pausePublish ) &&
14451476 Objects .equals (this .recipientEvents , connectCustomConfiguration .recipientEvents ) &&
14461477 Objects .equals (this .requireMutualTls , connectCustomConfiguration .requireMutualTls ) &&
14471478 Objects .equals (this .requiresAcknowledgement , connectCustomConfiguration .requiresAcknowledgement ) &&
@@ -1465,7 +1496,7 @@ public boolean equals(java.lang.Object o) {
14651496 */
14661497 @ Override
14671498 public int hashCode () {
1468- return Objects .hash (allowEnvelopePublish , allowSalesforcePublish , allUsers , allUsersExcept , configurationType , connectId , deliveryMode , disabledBy , enableLog , envelopeEvents , eventData , events , externalFolderId , externalFolderLabel , groupIds , includeCertificateOfCompletion , includeCertSoapHeader , includeDocumentFields , includeDocuments , includeEnvelopeVoidReason , includeHMAC , includeOAuth , includeSenderAccountasCustomField , includeTimeZoneInformation , integratorManaged , name , password , recipientEvents , requireMutualTls , requiresAcknowledgement , salesforceApiVersion , salesforceAuthcode , salesforceCallBackUrl , salesforceDocumentsAsContentFiles , senderOverride , senderSelectableItems , sfObjects , signMessageWithX509Certificate , soapNamespace , urlToPublishTo , userIds , userName , useSoapInterface );
1499+ return Objects .hash (allowEnvelopePublish , allowSalesforcePublish , allUsers , allUsersExcept , configurationType , connectId , deliveryMode , disabledBy , enableLog , envelopeEvents , eventData , events , externalFolderId , externalFolderLabel , groupIds , includeCertificateOfCompletion , includeCertSoapHeader , includeDocumentFields , includeDocuments , includeEnvelopeVoidReason , includeHMAC , includeOAuth , includeSenderAccountasCustomField , includeTimeZoneInformation , integratorManaged , name , password , pausePublish , recipientEvents , requireMutualTls , requiresAcknowledgement , salesforceApiVersion , salesforceAuthcode , salesforceCallBackUrl , salesforceDocumentsAsContentFiles , senderOverride , senderSelectableItems , sfObjects , signMessageWithX509Certificate , soapNamespace , urlToPublishTo , userIds , userName , useSoapInterface );
14691500 }
14701501
14711502
@@ -1504,6 +1535,7 @@ public String toString() {
15041535 sb .append (" integratorManaged: " ).append (toIndentedString (integratorManaged )).append ("\n " );
15051536 sb .append (" name: " ).append (toIndentedString (name )).append ("\n " );
15061537 sb .append (" password: " ).append (toIndentedString (password )).append ("\n " );
1538+ sb .append (" pausePublish: " ).append (toIndentedString (pausePublish )).append ("\n " );
15071539 sb .append (" recipientEvents: " ).append (toIndentedString (recipientEvents )).append ("\n " );
15081540 sb .append (" requireMutualTls: " ).append (toIndentedString (requireMutualTls )).append ("\n " );
15091541 sb .append (" requiresAcknowledgement: " ).append (toIndentedString (requiresAcknowledgement )).append ("\n " );
0 commit comments