public static InviteMembersResponse Unmarshall(UnmarshallerContext context) { InviteMembersResponse inviteMembersResponse = new InviteMembersResponse(); inviteMembersResponse.HttpResponse = context.HttpResponse; inviteMembersResponse.RequestId = context.StringValue("InviteMembers.RequestId"); return(inviteMembersResponse); }
/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { InviteMembersResponse response = new InviteMembersResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("unprocessedAccounts", targetDepth)) { var unmarshaller = new ListUnmarshaller <UnprocessedAccount, UnprocessedAccountUnmarshaller>(UnprocessedAccountUnmarshaller.Instance); response.UnprocessedAccounts = unmarshaller.Unmarshall(context); continue; } } return(response); }