Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for nested/complex types #7

Open
chgl opened this issue Mar 7, 2022 · 0 comments
Open

Support for nested/complex types #7

chgl opened this issue Mar 7, 2022 · 0 comments

Comments

@chgl
Copy link
Owner

chgl commented Mar 7, 2022

Something like:

[GenerateFhirParameters]
public class OuterModel
{
    public string Id { get; init; }
    public InnerModel Person{ get; init; } 
}

public class InnerModel
{
    public string Name { get; init; }
    public int Age { get; init; }
}

should be serializable as well. This will probably require repesenting the inner model using part:

{
  "resourceType": "Parameters",
  "parameter": [
    {
      "name": "id",
      "valueString": "OuterModel.Id"
    },
    {
      "name": "person",
      "part": [
        {
          "name": "name",
          "valueString": "InnerModel.Name"
        },
        {
          "name": "age",
          "valueInteger": "InnerModel.Age"
        }
      ]
    }
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant