We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is possible use classes that using herency? I use it to have a basic structure for every event and I add the necessary fields.
public class SyncDocumentIntegrationEvent : IntEvent { public int DocumentId { get; } public int UserId { get; }
public SyncDocumentIntegrationEvent(int documentId, int userId) : base() { DocumentId = documentId; UserId = userId; } }
The document generated by asyncAPI is enormous and breaks the structure:
I'm doing something wrong?
Thanks for the help.
The text was updated successfully, but these errors were encountered:
Would be fixed by #60
Sorry, something went wrong.
This is partially supported by using the [Discriminator] attribute https://github.com/tehmantra/saunter/blob/291d2aa30fe054331106442bc8a4d9bc23bcdea3/test/Saunter.Tests/Generation/SchemaGeneration/SchemaGenerationTests.cs#L177
[Discriminator]
This issue will be closed in favor of #60
No branches or pull requests
Is possible use classes that using herency? I use it to have a basic structure for every event and I add the necessary fields.
public class SyncDocumentIntegrationEvent : IntEvent
{
public int DocumentId { get; }
public int UserId { get; }
The document generated by asyncAPI is enormous and breaks the structure:
I'm doing something wrong?
Thanks for the help.
The text was updated successfully, but these errors were encountered: