File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed
Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ option java_outer_classname = "PaginationProto";
99message 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
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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/**
You can’t perform that action at this time.
0 commit comments