Exemple #1
0
        /// <summary>
        /// Returns true if ChannelCatalogMarketplaceSettingArray instances are equal
        /// </summary>
        /// <param name="other">Instance of ChannelCatalogMarketplaceSettingArray to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(ChannelCatalogMarketplaceSettingArray other)
        {
            // credit: http://stackoverflow.com/a/10454552/677735
            if (other == null)
            {
                return(false);
            }

            return(false);
        }
 /// <summary>
 /// Initializes a new instance of the <see cref="SetChannelCatalogMarketplaceSettingsRequest" /> class.
 /// </summary>
 /// <param name="Settings">Settings (required).</param>
 public SetChannelCatalogMarketplaceSettingsRequest(ChannelCatalogMarketplaceSettingArray Settings = default(ChannelCatalogMarketplaceSettingArray))
 {
     // to ensure "Settings" is required (not null)
     if (Settings == null)
     {
         throw new InvalidDataException("Settings is a required property for SetChannelCatalogMarketplaceSettingsRequest and cannot be null");
     }
     else
     {
         this.Settings = Settings;
     }
 }