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
The original Mention object allows to set ta date as follows:
Mention
mention.Mention.Date.Date = new Date { Start = ... }
This results in a serialized JSON that has 1 additional date property in the middle. Notion validation returns the following:
date
.mention.date.start should be defined, instead was `undefined`
I introduced a hotfix that skips the additional Date property:
Date
public class MentionPatch : Mention { [JsonProperty("date")] public Date Date1 { get; set; } }
The text was updated successfully, but these errors were encountered:
@matkoch I am unable to see issue, could you please add a failing test to prove this?
Sorry, something went wrong.
No branches or pull requests
The original
Mention
object allows to set ta date as follows:This results in a serialized JSON that has 1 additional
date
property in the middle. Notion validation returns the following:I introduced a hotfix that skips the additional
Date
property:The text was updated successfully, but these errors were encountered: