Skip to content

Commit

Permalink
remove WIP comments
Browse files Browse the repository at this point in the history
  • Loading branch information
capoyon committed Nov 21, 2024
1 parent 176aa9e commit 89f0f37
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions billing/v1/billing.proto
Original file line number Diff line number Diff line change
Expand Up @@ -421,52 +421,52 @@ service Billing {
};
}

// WORK-IN-PROGRESS: Returns the customer details and its tags.
// Returns the customer details and its tags.
// Port for: m/ripple/tags/vendor/{vendor}?type={type}
rpc GetTags(GetTagsRequest) returns (stream TagData) {
option (google.api.http) = {
get: "/v1/tags"
};
}

// WORK-IN-PROGRESS: Creates new customfield
// Creates new customfield
rpc CreateCustomField(CreateCustomFieldRequest) returns (CustomField) {
option (google.api.http) = {
post: "/v1/customfield"
body: "*"
};
}

// WORK-IN-PROGRESS: Returns all registered customfields
// Returns all registered customfields
rpc ListCustomField(ListCustomFieldRequest) returns (stream CustomField) {
option (google.api.http) = {
post: "/v1/customfield:read"
};
}

// WORK-IN-PROGRESS: Update the `customField` specified id, modifying its key and description
// Update the `customField` specified id, modifying its key and description
rpc UpdateCustomField(UpdateCustomFieldRequest) returns (CustomField) {
option (google.api.http) = {
put: "/v1/customfield/{id}"
body: "*"
};
}

// WORK-IN-PROGRESS: Deletes the customfield
// Deletes the customfield
rpc DeleteCustomField(DeleteCustomFieldRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
delete: "/v1/customfield/{id}"
};
}

// WORK-IN-PROGRESS: Creates new billing group free format item (miscellaneous)
// Creates new billing group free format item (miscellaneous)
rpc CreateFreeFormat(CreateFreeFormatRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
post: "/v1/freeformat"
};
}

// WORK-IN-PROGRESS: Delete billing group free format item (miscellaneous)
// Delete billing group free format item (miscellaneous)
rpc DeleteFreeFormat(DeleteFreeFormatRequest) returns (google.protobuf.Empty) {
option (google.api.http) = {
delete: "/v1/freeformat/{id}"
Expand Down

0 comments on commit 89f0f37

Please sign in to comment.