-
Notifications
You must be signed in to change notification settings - Fork 573
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
Adds ExecutivesProvided to AccountCompany #1888
Conversation
@@ -29,6 +29,15 @@ public class AccountCompany : StripeEntity<AccountCompany> | |||
[JsonProperty("directors_provided")] | |||
public bool DirectorsProvided { get; set; } | |||
|
|||
/// <summary> | |||
/// Whether the company's executives have been provided. Set this | |||
/// Boolean to `true` after creating all the company's executives with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
true
should be <c>true</c>
instead in dotnet and links should instead use
<a href="https://stripe.com/docs/subscriptions/webhooks">Using Webhooks with
/// Subscriptions</a>.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ack. fixing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Docs need to be fixed
efbfeca
to
3b78604
Compare
r? @remi-stripe fixed docs. ptal. |
/// Whether the company's executives have been provided. Set this | ||
/// Boolean to <c>true</c> after creating all the company's executives with | ||
/// <a href="https://stripe.com/docs/api/persons">the Persons API</a> for | ||
/// accounts with a <c>relationship.executive</c> requirement. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Usually we use <see cref="Invoice"/>
and such for those
Adds
ExecutivesProvided
toAccountCompany
r? @remi-stripe
cc @stripe/api-libraries