Skip to content

Commit c36f700

Browse files
jorunfaWorking Group Two Maintainers
andauthored
Syncing protocol buffers (#70)
GitOrigin-RevId: b1a2092575ce7afaffad0cf1e3e2f21fae89baba Co-authored-by: Working Group Two Maintainers <[email protected]>
1 parent 52dc60f commit c36f700

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

wgtwo/common/v0/pagination.proto

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright (C) 2025 Cisco Systems, Inc.
2+
13
syntax = "proto3";
24

35
package wgtwo.common.v0;
@@ -7,9 +9,9 @@ option java_package = "com.wgtwo.api.v0.common";
79
option java_outer_classname = "PaginationProto";
810

911
message 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

wgtwo/consents/v0/consents.proto

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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) {

wgtwo/sms/v1/sms.proto

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
/**

0 commit comments

Comments
 (0)