blob: c2eadb6d7953f5477e3c8a5212bb9c75b2c3ce9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
package content;
message StoredPaymentInstrumentKeyInfoProto {
optional uint64 insertion_order = 1;
optional string key = 2;
}
message StoredPaymentInstrumentProto {
optional int64 registration_id = 1;
optional string instrument_key = 2;
optional string origin = 3;
optional string name = 4;
repeated string enabled_methods = 5;
optional string stringified_capabilities = 6;
}
|