public override void ReadFragmentFrom(IMwsReader reader) { _productCategoryId = reader.Read<string>("ProductCategoryId"); _productCategoryName = reader.Read<string>("ProductCategoryName"); _parent = reader.Read<Categories>("Parent"); }
/// <summary> /// Sets the Parent property. /// </summary> /// <param name="parent">Parent property.</param> /// <returns>this instance.</returns> public Categories WithParent(Categories parent) { this._parent = parent; return this; }
/// <summary> /// Sets the Self property. /// </summary> /// <param name="self">Self property.</param> /// <returns>this instance.</returns> public GetProductCategoriesForASINResult WithSelf(Categories[] self) { this._self.AddRange(self); return this; }