I have an attribute in lightning component:
<aura:attribute name="pricingRecommendationListDetailsData" access="PUBLIC" type="list" default="object[]" />
Data stored in it visible as:
{accRecmId: "a07e000", category: "test", Price: 56, PriceRange: {…}, cost: 0.3, …}
Now I need to pass this attribute as parameter to apex controller on button click.And I need to iterate over values such as accRecmId in apex class
accRecmIdfrom each instance?