@@ -45,13 +45,13 @@ protected ActivationOutput() { }
4545 /// <param name="workspaceId">The WORKSPACE id. (required).</param>
4646 /// <param name="spaceId">The space id. (required).</param>
4747 /// <param name="audienceId">The audience id. (required).</param>
48- /// <param name="destinationConnectionId ">The DESTINATION connection id (formerly integrationInstanceId) . (required).</param>
48+ /// <param name="connectionId ">The connection id. (required).</param>
4949 /// <param name="activationType">Type of activation trigger. (required).</param>
5050 /// <param name="activationName">Name of the activation. (required).</param>
5151 /// <param name="personalization">personalization (required).</param>
5252 /// <param name="destinationMapping">destinationMapping.</param>
5353 /// <param name="performResync">Whether to perform a resync after creation of the activation..</param>
54- public ActivationOutput ( string id = default ( string ) , bool enabled = default ( bool ) , string workspaceId = default ( string ) , string spaceId = default ( string ) , string audienceId = default ( string ) , string destinationConnectionId = default ( string ) , string activationType = default ( string ) , string activationName = default ( string ) , PersonalizationInput personalization = default ( PersonalizationInput ) , DestinationSubscriptionConfiguration destinationMapping = default ( DestinationSubscriptionConfiguration ) , bool performResync = default ( bool ) )
54+ public ActivationOutput ( string id = default ( string ) , bool enabled = default ( bool ) , string workspaceId = default ( string ) , string spaceId = default ( string ) , string audienceId = default ( string ) , string connectionId = default ( string ) , string activationType = default ( string ) , string activationName = default ( string ) , PersonalizationInput personalization = default ( PersonalizationInput ) , DestinationSubscriptionConfiguration destinationMapping = default ( DestinationSubscriptionConfiguration ) , bool performResync = default ( bool ) )
5555 {
5656 // to ensure "id" is required (not null)
5757 if ( id == null )
@@ -78,12 +78,12 @@ protected ActivationOutput() { }
7878 throw new ArgumentNullException ( "audienceId is a required property for ActivationOutput and cannot be null" ) ;
7979 }
8080 this . AudienceId = audienceId ;
81- // to ensure "destinationConnectionId " is required (not null)
82- if ( destinationConnectionId == null )
81+ // to ensure "connectionId " is required (not null)
82+ if ( connectionId == null )
8383 {
84- throw new ArgumentNullException ( "destinationConnectionId is a required property for ActivationOutput and cannot be null" ) ;
84+ throw new ArgumentNullException ( "connectionId is a required property for ActivationOutput and cannot be null" ) ;
8585 }
86- this . DestinationConnectionId = destinationConnectionId ;
86+ this . ConnectionId = connectionId ;
8787 // to ensure "activationType" is required (not null)
8888 if ( activationType == null )
8989 {
@@ -142,11 +142,11 @@ protected ActivationOutput() { }
142142 public string AudienceId { get ; set ; }
143143
144144 /// <summary>
145- /// The DESTINATION connection id (formerly integrationInstanceId) .
145+ /// The connection id.
146146 /// </summary>
147- /// <value>The DESTINATION connection id (formerly integrationInstanceId) .</value>
148- [ DataMember ( Name = "destinationConnectionId " , IsRequired = true , EmitDefaultValue = true ) ]
149- public string DestinationConnectionId { get ; set ; }
147+ /// <value>The connection id.</value>
148+ [ DataMember ( Name = "connectionId " , IsRequired = true , EmitDefaultValue = true ) ]
149+ public string ConnectionId { get ; set ; }
150150
151151 /// <summary>
152152 /// Type of activation trigger.
@@ -194,7 +194,7 @@ public override string ToString()
194194 sb . Append ( " WorkspaceId: " ) . Append ( WorkspaceId ) . Append ( "\n " ) ;
195195 sb . Append ( " SpaceId: " ) . Append ( SpaceId ) . Append ( "\n " ) ;
196196 sb . Append ( " AudienceId: " ) . Append ( AudienceId ) . Append ( "\n " ) ;
197- sb . Append ( " DestinationConnectionId : " ) . Append ( DestinationConnectionId ) . Append ( "\n " ) ;
197+ sb . Append ( " ConnectionId : " ) . Append ( ConnectionId ) . Append ( "\n " ) ;
198198 sb . Append ( " ActivationType: " ) . Append ( ActivationType ) . Append ( "\n " ) ;
199199 sb . Append ( " ActivationName: " ) . Append ( ActivationName ) . Append ( "\n " ) ;
200200 sb . Append ( " Personalization: " ) . Append ( Personalization ) . Append ( "\n " ) ;
@@ -260,9 +260,9 @@ public bool Equals(ActivationOutput input)
260260 this . AudienceId . Equals ( input . AudienceId ) )
261261 ) &&
262262 (
263- this . DestinationConnectionId == input . DestinationConnectionId ||
264- ( this . DestinationConnectionId != null &&
265- this . DestinationConnectionId . Equals ( input . DestinationConnectionId ) )
263+ this . ConnectionId == input . ConnectionId ||
264+ ( this . ConnectionId != null &&
265+ this . ConnectionId . Equals ( input . ConnectionId ) )
266266 ) &&
267267 (
268268 this . ActivationType == input . ActivationType ||
@@ -316,9 +316,9 @@ public override int GetHashCode()
316316 {
317317 hashCode = ( hashCode * 59 ) + this . AudienceId . GetHashCode ( ) ;
318318 }
319- if ( this . DestinationConnectionId != null )
319+ if ( this . ConnectionId != null )
320320 {
321- hashCode = ( hashCode * 59 ) + this . DestinationConnectionId . GetHashCode ( ) ;
321+ hashCode = ( hashCode * 59 ) + this . ConnectionId . GetHashCode ( ) ;
322322 }
323323 if ( this . ActivationType != null )
324324 {
0 commit comments