Skip to content

Commit f438d50

Browse files
authored
Syncing protocol buffers (#69)
1 parent 529f785 commit f438d50

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

wgtwo/common/v0/pagination.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ option java_outer_classname = "PaginationProto";
99
message PaginationRequest {
1010
// 1 is reserved for 'parent'
1111
int32 page_size = 2;
12+
// page_token is required to be base64 encoded.
1213
string page_token = 3;
1314
}
1415

wgtwo/consents/v0/consents.proto

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,18 @@ service ConsentService {
4747
option (scope) = "subscription.consent:write";
4848
}
4949

50+
// Retrieves a list of consents for a specific product.
51+
//
52+
// Pagination:
53+
// - `pagination.page_size`: Specifies the number of consents to return per page.
54+
// - Acceptable values range from 100 to 1000, inclusive.
55+
//
56+
//
57+
// NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
58+
// See https://developer.cisco.com/docs/mobility-services/api-lifecycle
5059
rpc ListConsentsForProduct (ListConsentsForProductRequest)
5160
returns (ListConsentsForProductResponse) {
61+
option (status) = BETA;
5262
option (scope) = "";
5363
}
5464
}

wgtwo/sms/v1/sms.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,11 @@ message SendDataToSubscriberRequest {
149149

150150
// The application port for the message.
151151
ApplicationPort application_port = 6;
152+
153+
// SMS protocol identifier.
154+
// Only the least-significant 8 bits must be used, rest fixed at 0.
155+
// Default is 0.
156+
int32 protocol_identifier = 7;
152157
}
153158

154159
/**

0 commit comments

Comments
 (0)