/// <summary>
        /// Returns true if objects are equal
        /// </summary>
        public bool Equals(CreateInstanceTopicResponse input)
        {
            if (input == null)
            {
                return(false);
            }

            return
                (
                this.Id == input.Id ||
                (this.Id != null &&
                 this.Id.Equals(input.Id))
                );
        }
Example #2
0
        /// <summary>
        /// Returns true if objects are equal
        /// </summary>
        public bool Equals(CreateInstanceTopicResponse input)
        {
            if (input == null)
            {
                return(false);
            }

            return
                (
                this.Name == input.Name ||
                (this.Name != null &&
                 this.Name.Equals(input.Name))
                );
        }