/// <summary>
 /// Initializes a new instance of the
 /// WebhookUpdatePartnerDestinationInfo class.
 /// </summary>
 /// <param name="endpointUrl">The URL that represents the endpoint of
 /// the partner destination.</param>
 /// <param name="endpointBaseUrl">The base URL that represents the
 /// endpoint of the partner destination.</param>
 public WebhookUpdatePartnerDestinationInfo(string endpointUrl = default(string), string endpointBaseUrl = default(string), PartnerClientAuthentication clientAuthentication = default(PartnerClientAuthentication))
 {
     EndpointUrl          = endpointUrl;
     EndpointBaseUrl      = endpointBaseUrl;
     ClientAuthentication = clientAuthentication;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the WebhookPartnerDestinationInfo
 /// class.
 /// </summary>
 /// <param name="azureSubscriptionId">Azure subscription ID of the
 /// subscriber. The partner destination associated with the channel
 /// will be
 /// created under this Azure subscription.</param>
 /// <param name="resourceGroupName">Azure Resource Group of the
 /// subscriber. The partner destination associated with the channel
 /// will be
 /// created under this resource group.</param>
 /// <param name="name">Name of the partner destination associated with
 /// the channel.</param>
 /// <param name="endpointServiceContext">Additional context of the
 /// partner destination endpoint.</param>
 /// <param name="resourceMoveChangeHistory">Change history of the
 /// resource move.</param>
 /// <param name="endpointUrl">The URL that represents the endpoint of
 /// the partner destination.</param>
 /// <param name="endpointBaseUrl">The base URL that represents the
 /// endpoint of the partner destination.</param>
 public WebhookPartnerDestinationInfo(string azureSubscriptionId = default(string), string resourceGroupName = default(string), string name = default(string), string endpointServiceContext = default(string), IList <ResourceMoveChangeHistory> resourceMoveChangeHistory = default(IList <ResourceMoveChangeHistory>), string endpointUrl = default(string), string endpointBaseUrl = default(string), PartnerClientAuthentication clientAuthentication = default(PartnerClientAuthentication))
     : base(azureSubscriptionId, resourceGroupName, name, endpointServiceContext, resourceMoveChangeHistory)
 {
     EndpointUrl          = endpointUrl;
     EndpointBaseUrl      = endpointBaseUrl;
     ClientAuthentication = clientAuthentication;
     CustomInit();
 }