-
Notifications
You must be signed in to change notification settings - Fork 74
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
APP-6845: Create GetBillingService API #588
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,6 +69,8 @@ service AppService { | |
|
||
rpc UpdateBillingService(UpdateBillingServiceRequest) returns (UpdateBillingServiceResponse); | ||
|
||
rpc GetBillingService(UpdateBillingServiceRequest) returns (UpdateBillingServiceResponse); | ||
|
||
rpc OrganizationSetSupportEmail(OrganizationSetSupportEmailRequest) returns (OrganizationSetSupportEmailResponse); | ||
|
||
rpc OrganizationGetSupportEmail(OrganizationGetSupportEmailRequest) returns (OrganizationGetSupportEmailResponse); | ||
|
@@ -447,6 +449,14 @@ message UpdateBillingServiceRequest { | |
|
||
message UpdateBillingServiceResponse {} | ||
|
||
message GetBillingServiceRequest { | ||
string org_id = 1; | ||
} | ||
|
||
message GetBillingServiceResponse { | ||
BillingAddress billing_address = 1; | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @RoxyFarhad what other fields are you picturing here? you listed a few in the ticket description but wanted to know what you included in the email There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. copied from the email:
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. updated |
||
|
||
message DisableBillingServiceRequest { | ||
string org_id = 1; | ||
} | ||
|
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.
Should this be GetBillingServiceConfig?
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.
yup I think that it should be