File tree Expand file tree Collapse file tree 3 files changed +18
-10
lines changed Expand file tree Collapse file tree 3 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 1+ // Copyright (C) 2025 Cisco Systems, Inc.
2+
13syntax = "proto3" ;
24
35package wgtwo.common.v0 ;
@@ -7,9 +9,9 @@ option java_package = "com.wgtwo.api.v0.common";
79option java_outer_classname = "PaginationProto" ;
810
911message PaginationRequest {
10- // 1 is reserved for 'parent'
12+ // page_size is the number of items to return per page.
1113 int32 page_size = 2 ;
12- // page_token is required to be base64 encoded .
14+ // page_token is an opaque string .
1315 string page_token = 3 ;
1416}
1517
Original file line number Diff line number Diff line change @@ -47,14 +47,14 @@ service ConsentService {
4747 option (scope) = "subscription.consent:write" ;
4848 }
4949
50- // Retrieves a list of consents for a specific product.
51- //
50+ // Retrieves a list of consents for a specific product.<br>
51+ // <br>
5252 // 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
53+ // <br>
54+ // - `pagination.page_size`: Specifies the number of consents to return per page. <br>
55+ // - Acceptable values range from 100 to 1000, inclusive. <br>
56+ // <br>
57+ // NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE <br>
5858 // See https://developer.cisco.com/docs/mobility-services/api-lifecycle
5959 rpc ListConsentsForProduct (ListConsentsForProductRequest )
6060 returns (ListConsentsForProductResponse ) {
Original file line number Diff line number Diff line change 1- // Copyright 2020 [Working Group Two]/[ Cisco Systems]
1+ // Copyright (C) 2022 Cisco Systems, Inc.
22//
33// Licensed under the Apache License, Version 2.0 (the "License");
44// you may not use this file except in compliance with the License.
@@ -154,6 +154,12 @@ message SendDataToSubscriberRequest {
154154 // Only the least-significant 8 bits must be used, rest fixed at 0.
155155 // Default is 0.
156156 int32 protocol_identifier = 7 ;
157+
158+ // If set to true, the UDH (User-Data Header) of the SMS will contain
159+ // the CPI (Command Packet Identifier) for an SMS-PP (Single Short Message
160+ // Point to Point) as defined in the 3GPP TS 31.115.
161+ // Default is false.
162+ bool set_sms_pp_cpi = 8 ;
157163}
158164
159165/**
You can’t perform that action at this time.
0 commit comments