@sniipwebmaster/biller-service-client-grpcweb 22.8.4598 → 22.11.4624
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dependancies/service_grpc_web_pb.js +160 -0
- package/dependancies/service_pb.js +454 -542
- package/package.json +1 -1
|
@@ -1674,6 +1674,166 @@ proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.getBillerAddre
|
|
|
1674
1674
|
};
|
|
1675
1675
|
|
|
1676
1676
|
|
|
1677
|
+
/**
|
|
1678
|
+
* @const
|
|
1679
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
1680
|
+
* !proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest,
|
|
1681
|
+
* !proto.sniipbillerapi.BillerResponse>}
|
|
1682
|
+
*/
|
|
1683
|
+
const methodDescriptor_SniipBillerAPIService_GetBillerByBillerCodeAndpaymentProcessorInternal = new grpc.web.MethodDescriptor(
|
|
1684
|
+
'/sniipbillerapi.SniipBillerAPIService/GetBillerByBillerCodeAndpaymentProcessorInternal',
|
|
1685
|
+
grpc.web.MethodType.UNARY,
|
|
1686
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest,
|
|
1687
|
+
proto.sniipbillerapi.BillerResponse,
|
|
1688
|
+
/**
|
|
1689
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest} request
|
|
1690
|
+
* @return {!Uint8Array}
|
|
1691
|
+
*/
|
|
1692
|
+
function(request) {
|
|
1693
|
+
return request.serializeBinary();
|
|
1694
|
+
},
|
|
1695
|
+
proto.sniipbillerapi.BillerResponse.deserializeBinary
|
|
1696
|
+
);
|
|
1697
|
+
|
|
1698
|
+
|
|
1699
|
+
/**
|
|
1700
|
+
* @const
|
|
1701
|
+
* @type {!grpc.web.AbstractClientBase.MethodInfo<
|
|
1702
|
+
* !proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest,
|
|
1703
|
+
* !proto.sniipbillerapi.BillerResponse>}
|
|
1704
|
+
*/
|
|
1705
|
+
const methodInfo_SniipBillerAPIService_GetBillerByBillerCodeAndpaymentProcessorInternal = new grpc.web.AbstractClientBase.MethodInfo(
|
|
1706
|
+
proto.sniipbillerapi.BillerResponse,
|
|
1707
|
+
/**
|
|
1708
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest} request
|
|
1709
|
+
* @return {!Uint8Array}
|
|
1710
|
+
*/
|
|
1711
|
+
function(request) {
|
|
1712
|
+
return request.serializeBinary();
|
|
1713
|
+
},
|
|
1714
|
+
proto.sniipbillerapi.BillerResponse.deserializeBinary
|
|
1715
|
+
);
|
|
1716
|
+
|
|
1717
|
+
|
|
1718
|
+
/**
|
|
1719
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest} request The
|
|
1720
|
+
* request proto
|
|
1721
|
+
* @param {?Object<string, string>} metadata User defined
|
|
1722
|
+
* call metadata
|
|
1723
|
+
* @param {function(?grpc.web.Error, ?proto.sniipbillerapi.BillerResponse)}
|
|
1724
|
+
* callback The callback function(error, response)
|
|
1725
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipbillerapi.BillerResponse>|undefined}
|
|
1726
|
+
* The XHR Node Readable Stream
|
|
1727
|
+
*/
|
|
1728
|
+
proto.sniipbillerapi.SniipBillerAPIServiceClient.prototype.getBillerByBillerCodeAndpaymentProcessorInternal =
|
|
1729
|
+
function(request, metadata, callback) {
|
|
1730
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
1731
|
+
'/sniipbillerapi.SniipBillerAPIService/GetBillerByBillerCodeAndpaymentProcessorInternal',
|
|
1732
|
+
request,
|
|
1733
|
+
metadata || {},
|
|
1734
|
+
methodDescriptor_SniipBillerAPIService_GetBillerByBillerCodeAndpaymentProcessorInternal,
|
|
1735
|
+
callback);
|
|
1736
|
+
};
|
|
1737
|
+
|
|
1738
|
+
|
|
1739
|
+
/**
|
|
1740
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest} request The
|
|
1741
|
+
* request proto
|
|
1742
|
+
* @param {?Object<string, string>} metadata User defined
|
|
1743
|
+
* call metadata
|
|
1744
|
+
* @return {!Promise<!proto.sniipbillerapi.BillerResponse>}
|
|
1745
|
+
* Promise that resolves to the response
|
|
1746
|
+
*/
|
|
1747
|
+
proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.getBillerByBillerCodeAndpaymentProcessorInternal =
|
|
1748
|
+
function(request, metadata) {
|
|
1749
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
1750
|
+
'/sniipbillerapi.SniipBillerAPIService/GetBillerByBillerCodeAndpaymentProcessorInternal',
|
|
1751
|
+
request,
|
|
1752
|
+
metadata || {},
|
|
1753
|
+
methodDescriptor_SniipBillerAPIService_GetBillerByBillerCodeAndpaymentProcessorInternal);
|
|
1754
|
+
};
|
|
1755
|
+
|
|
1756
|
+
|
|
1757
|
+
/**
|
|
1758
|
+
* @const
|
|
1759
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
1760
|
+
* !proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest,
|
|
1761
|
+
* !proto.sniipbillerapi.BillerResponse>}
|
|
1762
|
+
*/
|
|
1763
|
+
const methodDescriptor_SniipBillerAPIService_GetBillerByBillerConfigIdInternal = new grpc.web.MethodDescriptor(
|
|
1764
|
+
'/sniipbillerapi.SniipBillerAPIService/GetBillerByBillerConfigIdInternal',
|
|
1765
|
+
grpc.web.MethodType.UNARY,
|
|
1766
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest,
|
|
1767
|
+
proto.sniipbillerapi.BillerResponse,
|
|
1768
|
+
/**
|
|
1769
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest} request
|
|
1770
|
+
* @return {!Uint8Array}
|
|
1771
|
+
*/
|
|
1772
|
+
function(request) {
|
|
1773
|
+
return request.serializeBinary();
|
|
1774
|
+
},
|
|
1775
|
+
proto.sniipbillerapi.BillerResponse.deserializeBinary
|
|
1776
|
+
);
|
|
1777
|
+
|
|
1778
|
+
|
|
1779
|
+
/**
|
|
1780
|
+
* @const
|
|
1781
|
+
* @type {!grpc.web.AbstractClientBase.MethodInfo<
|
|
1782
|
+
* !proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest,
|
|
1783
|
+
* !proto.sniipbillerapi.BillerResponse>}
|
|
1784
|
+
*/
|
|
1785
|
+
const methodInfo_SniipBillerAPIService_GetBillerByBillerConfigIdInternal = new grpc.web.AbstractClientBase.MethodInfo(
|
|
1786
|
+
proto.sniipbillerapi.BillerResponse,
|
|
1787
|
+
/**
|
|
1788
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest} request
|
|
1789
|
+
* @return {!Uint8Array}
|
|
1790
|
+
*/
|
|
1791
|
+
function(request) {
|
|
1792
|
+
return request.serializeBinary();
|
|
1793
|
+
},
|
|
1794
|
+
proto.sniipbillerapi.BillerResponse.deserializeBinary
|
|
1795
|
+
);
|
|
1796
|
+
|
|
1797
|
+
|
|
1798
|
+
/**
|
|
1799
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest} request The
|
|
1800
|
+
* request proto
|
|
1801
|
+
* @param {?Object<string, string>} metadata User defined
|
|
1802
|
+
* call metadata
|
|
1803
|
+
* @param {function(?grpc.web.Error, ?proto.sniipbillerapi.BillerResponse)}
|
|
1804
|
+
* callback The callback function(error, response)
|
|
1805
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipbillerapi.BillerResponse>|undefined}
|
|
1806
|
+
* The XHR Node Readable Stream
|
|
1807
|
+
*/
|
|
1808
|
+
proto.sniipbillerapi.SniipBillerAPIServiceClient.prototype.getBillerByBillerConfigIdInternal =
|
|
1809
|
+
function(request, metadata, callback) {
|
|
1810
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
1811
|
+
'/sniipbillerapi.SniipBillerAPIService/GetBillerByBillerConfigIdInternal',
|
|
1812
|
+
request,
|
|
1813
|
+
metadata || {},
|
|
1814
|
+
methodDescriptor_SniipBillerAPIService_GetBillerByBillerConfigIdInternal,
|
|
1815
|
+
callback);
|
|
1816
|
+
};
|
|
1817
|
+
|
|
1818
|
+
|
|
1819
|
+
/**
|
|
1820
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest} request The
|
|
1821
|
+
* request proto
|
|
1822
|
+
* @param {?Object<string, string>} metadata User defined
|
|
1823
|
+
* call metadata
|
|
1824
|
+
* @return {!Promise<!proto.sniipbillerapi.BillerResponse>}
|
|
1825
|
+
* Promise that resolves to the response
|
|
1826
|
+
*/
|
|
1827
|
+
proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.getBillerByBillerConfigIdInternal =
|
|
1828
|
+
function(request, metadata) {
|
|
1829
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
1830
|
+
'/sniipbillerapi.SniipBillerAPIService/GetBillerByBillerConfigIdInternal',
|
|
1831
|
+
request,
|
|
1832
|
+
metadata || {},
|
|
1833
|
+
methodDescriptor_SniipBillerAPIService_GetBillerByBillerConfigIdInternal);
|
|
1834
|
+
};
|
|
1835
|
+
|
|
1836
|
+
|
|
1677
1837
|
/**
|
|
1678
1838
|
* @const
|
|
1679
1839
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -23,7 +23,6 @@ goog.exportSymbol('proto.sniipbillerapi.AddOrUpdateBillerNotificationRecipientRe
|
|
|
23
23
|
goog.exportSymbol('proto.sniipbillerapi.AddPaymentDetailsRequest', null, global);
|
|
24
24
|
goog.exportSymbol('proto.sniipbillerapi.AddressRequest', null, global);
|
|
25
25
|
goog.exportSymbol('proto.sniipbillerapi.AddressResponse', null, global);
|
|
26
|
-
goog.exportSymbol('proto.sniipbillerapi.AddressRevision', null, global);
|
|
27
26
|
goog.exportSymbol('proto.sniipbillerapi.ApplyRevisionRequest', null, global);
|
|
28
27
|
goog.exportSymbol('proto.sniipbillerapi.BankAccount', null, global);
|
|
29
28
|
goog.exportSymbol('proto.sniipbillerapi.BankDetail', null, global);
|
|
@@ -76,6 +75,8 @@ goog.exportSymbol('proto.sniipbillerapi.GetAllBillersRequest', null, global);
|
|
|
76
75
|
goog.exportSymbol('proto.sniipbillerapi.GetAllMbillingPermittedBillersRequest', null, global);
|
|
77
76
|
goog.exportSymbol('proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest', null, global);
|
|
78
77
|
goog.exportSymbol('proto.sniipbillerapi.GetBillerAddressRequest', null, global);
|
|
78
|
+
goog.exportSymbol('proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest', null, global);
|
|
79
|
+
goog.exportSymbol('proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest', null, global);
|
|
79
80
|
goog.exportSymbol('proto.sniipbillerapi.GetBillerConfigRevisionsRequest', null, global);
|
|
80
81
|
goog.exportSymbol('proto.sniipbillerapi.GetBillerContactDetailsRequest', null, global);
|
|
81
82
|
goog.exportSymbol('proto.sniipbillerapi.GetBillerCrnNicknameRequest', null, global);
|
|
@@ -111,6 +112,7 @@ goog.exportSymbol('proto.sniipbillerapi.OrganisationDetails', null, global);
|
|
|
111
112
|
goog.exportSymbol('proto.sniipbillerapi.OrganisationsResponse', null, global);
|
|
112
113
|
goog.exportSymbol('proto.sniipbillerapi.PayIdAccount', null, global);
|
|
113
114
|
goog.exportSymbol('proto.sniipbillerapi.PaymentMethodGroupUpdateRequest', null, global);
|
|
115
|
+
goog.exportSymbol('proto.sniipbillerapi.PaymentProcessor', null, global);
|
|
114
116
|
goog.exportSymbol('proto.sniipbillerapi.PaymentRestrictions', null, global);
|
|
115
117
|
goog.exportSymbol('proto.sniipbillerapi.PaymentRestrictionsUpdateRequest', null, global);
|
|
116
118
|
goog.exportSymbol('proto.sniipbillerapi.ProfileSwitcherBillersResponse', null, global);
|
|
@@ -3506,464 +3508,6 @@ proto.sniipbillerapi.AddressResponse.prototype.setSuburb = function(value) {
|
|
|
3506
3508
|
|
|
3507
3509
|
|
|
3508
3510
|
|
|
3509
|
-
/**
|
|
3510
|
-
* Generated by JsPbCodeGenerator.
|
|
3511
|
-
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
3512
|
-
* server response, or constructed directly in Javascript. The array is used
|
|
3513
|
-
* in place and becomes part of the constructed object. It is not cloned.
|
|
3514
|
-
* If no data is provided, the constructed object will be empty, but still
|
|
3515
|
-
* valid.
|
|
3516
|
-
* @extends {jspb.Message}
|
|
3517
|
-
* @constructor
|
|
3518
|
-
*/
|
|
3519
|
-
proto.sniipbillerapi.AddressRevision = function(opt_data) {
|
|
3520
|
-
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
3521
|
-
};
|
|
3522
|
-
goog.inherits(proto.sniipbillerapi.AddressRevision, jspb.Message);
|
|
3523
|
-
if (goog.DEBUG && !COMPILED) {
|
|
3524
|
-
proto.sniipbillerapi.AddressRevision.displayName = 'proto.sniipbillerapi.AddressRevision';
|
|
3525
|
-
}
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
3529
|
-
/**
|
|
3530
|
-
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
3531
|
-
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
3532
|
-
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
3533
|
-
* For the list of reserved names please see:
|
|
3534
|
-
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
3535
|
-
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
3536
|
-
* for transitional soy proto support: http://goto/soy-param-migration
|
|
3537
|
-
* @return {!Object}
|
|
3538
|
-
*/
|
|
3539
|
-
proto.sniipbillerapi.AddressRevision.prototype.toObject = function(opt_includeInstance) {
|
|
3540
|
-
return proto.sniipbillerapi.AddressRevision.toObject(opt_includeInstance, this);
|
|
3541
|
-
};
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
/**
|
|
3545
|
-
* Static version of the {@see toObject} method.
|
|
3546
|
-
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
3547
|
-
* instance for transitional soy proto support:
|
|
3548
|
-
* http://goto/soy-param-migration
|
|
3549
|
-
* @param {!proto.sniipbillerapi.AddressRevision} msg The msg instance to transform.
|
|
3550
|
-
* @return {!Object}
|
|
3551
|
-
*/
|
|
3552
|
-
proto.sniipbillerapi.AddressRevision.toObject = function(includeInstance, msg) {
|
|
3553
|
-
var f, obj = {
|
|
3554
|
-
addressrevisionid: msg.getAddressrevisionid(),
|
|
3555
|
-
requiresreview: msg.getRequiresreview(),
|
|
3556
|
-
creationtimestamp: msg.getCreationtimestamp(),
|
|
3557
|
-
appliedtimestamp: msg.getAppliedtimestamp(),
|
|
3558
|
-
attachmentid: msg.getAttachmentid(),
|
|
3559
|
-
billerid: msg.getBillerid(),
|
|
3560
|
-
country: msg.getCountry(),
|
|
3561
|
-
state: msg.getState(),
|
|
3562
|
-
addressline1: msg.getAddressline1(),
|
|
3563
|
-
addressline2: msg.getAddressline2(),
|
|
3564
|
-
suburb: msg.getSuburb(),
|
|
3565
|
-
postcode: msg.getPostcode()
|
|
3566
|
-
};
|
|
3567
|
-
|
|
3568
|
-
if (includeInstance) {
|
|
3569
|
-
obj.$jspbMessageInstance = msg;
|
|
3570
|
-
}
|
|
3571
|
-
return obj;
|
|
3572
|
-
};
|
|
3573
|
-
}
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
/**
|
|
3577
|
-
* Deserializes binary data (in protobuf wire format).
|
|
3578
|
-
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
3579
|
-
* @return {!proto.sniipbillerapi.AddressRevision}
|
|
3580
|
-
*/
|
|
3581
|
-
proto.sniipbillerapi.AddressRevision.deserializeBinary = function(bytes) {
|
|
3582
|
-
var reader = new jspb.BinaryReader(bytes);
|
|
3583
|
-
var msg = new proto.sniipbillerapi.AddressRevision;
|
|
3584
|
-
return proto.sniipbillerapi.AddressRevision.deserializeBinaryFromReader(msg, reader);
|
|
3585
|
-
};
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
/**
|
|
3589
|
-
* Deserializes binary data (in protobuf wire format) from the
|
|
3590
|
-
* given reader into the given message object.
|
|
3591
|
-
* @param {!proto.sniipbillerapi.AddressRevision} msg The message object to deserialize into.
|
|
3592
|
-
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
3593
|
-
* @return {!proto.sniipbillerapi.AddressRevision}
|
|
3594
|
-
*/
|
|
3595
|
-
proto.sniipbillerapi.AddressRevision.deserializeBinaryFromReader = function(msg, reader) {
|
|
3596
|
-
while (reader.nextField()) {
|
|
3597
|
-
if (reader.isEndGroup()) {
|
|
3598
|
-
break;
|
|
3599
|
-
}
|
|
3600
|
-
var field = reader.getFieldNumber();
|
|
3601
|
-
switch (field) {
|
|
3602
|
-
case 1:
|
|
3603
|
-
var value = /** @type {number} */ (reader.readInt64());
|
|
3604
|
-
msg.setAddressrevisionid(value);
|
|
3605
|
-
break;
|
|
3606
|
-
case 2:
|
|
3607
|
-
var value = /** @type {boolean} */ (reader.readBool());
|
|
3608
|
-
msg.setRequiresreview(value);
|
|
3609
|
-
break;
|
|
3610
|
-
case 3:
|
|
3611
|
-
var value = /** @type {string} */ (reader.readString());
|
|
3612
|
-
msg.setCreationtimestamp(value);
|
|
3613
|
-
break;
|
|
3614
|
-
case 4:
|
|
3615
|
-
var value = /** @type {string} */ (reader.readString());
|
|
3616
|
-
msg.setAppliedtimestamp(value);
|
|
3617
|
-
break;
|
|
3618
|
-
case 5:
|
|
3619
|
-
var value = /** @type {number} */ (reader.readInt64());
|
|
3620
|
-
msg.setAttachmentid(value);
|
|
3621
|
-
break;
|
|
3622
|
-
case 6:
|
|
3623
|
-
var value = /** @type {number} */ (reader.readInt64());
|
|
3624
|
-
msg.setBillerid(value);
|
|
3625
|
-
break;
|
|
3626
|
-
case 7:
|
|
3627
|
-
var value = /** @type {string} */ (reader.readString());
|
|
3628
|
-
msg.setCountry(value);
|
|
3629
|
-
break;
|
|
3630
|
-
case 8:
|
|
3631
|
-
var value = /** @type {string} */ (reader.readString());
|
|
3632
|
-
msg.setState(value);
|
|
3633
|
-
break;
|
|
3634
|
-
case 9:
|
|
3635
|
-
var value = /** @type {string} */ (reader.readString());
|
|
3636
|
-
msg.setAddressline1(value);
|
|
3637
|
-
break;
|
|
3638
|
-
case 10:
|
|
3639
|
-
var value = /** @type {string} */ (reader.readString());
|
|
3640
|
-
msg.setAddressline2(value);
|
|
3641
|
-
break;
|
|
3642
|
-
case 11:
|
|
3643
|
-
var value = /** @type {string} */ (reader.readString());
|
|
3644
|
-
msg.setSuburb(value);
|
|
3645
|
-
break;
|
|
3646
|
-
case 12:
|
|
3647
|
-
var value = /** @type {string} */ (reader.readString());
|
|
3648
|
-
msg.setPostcode(value);
|
|
3649
|
-
break;
|
|
3650
|
-
default:
|
|
3651
|
-
reader.skipField();
|
|
3652
|
-
break;
|
|
3653
|
-
}
|
|
3654
|
-
}
|
|
3655
|
-
return msg;
|
|
3656
|
-
};
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
/**
|
|
3660
|
-
* Class method variant: serializes the given message to binary data
|
|
3661
|
-
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
3662
|
-
* @param {!proto.sniipbillerapi.AddressRevision} message
|
|
3663
|
-
* @param {!jspb.BinaryWriter} writer
|
|
3664
|
-
*/
|
|
3665
|
-
proto.sniipbillerapi.AddressRevision.serializeBinaryToWriter = function(message, writer) {
|
|
3666
|
-
message.serializeBinaryToWriter(writer);
|
|
3667
|
-
};
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
/**
|
|
3671
|
-
* Serializes the message to binary data (in protobuf wire format).
|
|
3672
|
-
* @return {!Uint8Array}
|
|
3673
|
-
*/
|
|
3674
|
-
proto.sniipbillerapi.AddressRevision.prototype.serializeBinary = function() {
|
|
3675
|
-
var writer = new jspb.BinaryWriter();
|
|
3676
|
-
this.serializeBinaryToWriter(writer);
|
|
3677
|
-
return writer.getResultBuffer();
|
|
3678
|
-
};
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
/**
|
|
3682
|
-
* Serializes the message to binary data (in protobuf wire format),
|
|
3683
|
-
* writing to the given BinaryWriter.
|
|
3684
|
-
* @param {!jspb.BinaryWriter} writer
|
|
3685
|
-
*/
|
|
3686
|
-
proto.sniipbillerapi.AddressRevision.prototype.serializeBinaryToWriter = function (writer) {
|
|
3687
|
-
var f = undefined;
|
|
3688
|
-
f = this.getAddressrevisionid();
|
|
3689
|
-
if (f !== 0) {
|
|
3690
|
-
writer.writeInt64(
|
|
3691
|
-
1,
|
|
3692
|
-
f
|
|
3693
|
-
);
|
|
3694
|
-
}
|
|
3695
|
-
f = this.getRequiresreview();
|
|
3696
|
-
if (f) {
|
|
3697
|
-
writer.writeBool(
|
|
3698
|
-
2,
|
|
3699
|
-
f
|
|
3700
|
-
);
|
|
3701
|
-
}
|
|
3702
|
-
f = this.getCreationtimestamp();
|
|
3703
|
-
if (f.length > 0) {
|
|
3704
|
-
writer.writeString(
|
|
3705
|
-
3,
|
|
3706
|
-
f
|
|
3707
|
-
);
|
|
3708
|
-
}
|
|
3709
|
-
f = this.getAppliedtimestamp();
|
|
3710
|
-
if (f.length > 0) {
|
|
3711
|
-
writer.writeString(
|
|
3712
|
-
4,
|
|
3713
|
-
f
|
|
3714
|
-
);
|
|
3715
|
-
}
|
|
3716
|
-
f = this.getAttachmentid();
|
|
3717
|
-
if (f !== 0) {
|
|
3718
|
-
writer.writeInt64(
|
|
3719
|
-
5,
|
|
3720
|
-
f
|
|
3721
|
-
);
|
|
3722
|
-
}
|
|
3723
|
-
f = this.getBillerid();
|
|
3724
|
-
if (f !== 0) {
|
|
3725
|
-
writer.writeInt64(
|
|
3726
|
-
6,
|
|
3727
|
-
f
|
|
3728
|
-
);
|
|
3729
|
-
}
|
|
3730
|
-
f = this.getCountry();
|
|
3731
|
-
if (f.length > 0) {
|
|
3732
|
-
writer.writeString(
|
|
3733
|
-
7,
|
|
3734
|
-
f
|
|
3735
|
-
);
|
|
3736
|
-
}
|
|
3737
|
-
f = this.getState();
|
|
3738
|
-
if (f.length > 0) {
|
|
3739
|
-
writer.writeString(
|
|
3740
|
-
8,
|
|
3741
|
-
f
|
|
3742
|
-
);
|
|
3743
|
-
}
|
|
3744
|
-
f = this.getAddressline1();
|
|
3745
|
-
if (f.length > 0) {
|
|
3746
|
-
writer.writeString(
|
|
3747
|
-
9,
|
|
3748
|
-
f
|
|
3749
|
-
);
|
|
3750
|
-
}
|
|
3751
|
-
f = this.getAddressline2();
|
|
3752
|
-
if (f.length > 0) {
|
|
3753
|
-
writer.writeString(
|
|
3754
|
-
10,
|
|
3755
|
-
f
|
|
3756
|
-
);
|
|
3757
|
-
}
|
|
3758
|
-
f = this.getSuburb();
|
|
3759
|
-
if (f.length > 0) {
|
|
3760
|
-
writer.writeString(
|
|
3761
|
-
11,
|
|
3762
|
-
f
|
|
3763
|
-
);
|
|
3764
|
-
}
|
|
3765
|
-
f = this.getPostcode();
|
|
3766
|
-
if (f.length > 0) {
|
|
3767
|
-
writer.writeString(
|
|
3768
|
-
12,
|
|
3769
|
-
f
|
|
3770
|
-
);
|
|
3771
|
-
}
|
|
3772
|
-
};
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
/**
|
|
3776
|
-
* Creates a deep clone of this proto. No data is shared with the original.
|
|
3777
|
-
* @return {!proto.sniipbillerapi.AddressRevision} The clone.
|
|
3778
|
-
*/
|
|
3779
|
-
proto.sniipbillerapi.AddressRevision.prototype.cloneMessage = function() {
|
|
3780
|
-
return /** @type {!proto.sniipbillerapi.AddressRevision} */ (jspb.Message.cloneMessage(this));
|
|
3781
|
-
};
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
/**
|
|
3785
|
-
* optional int64 addressRevisionId = 1;
|
|
3786
|
-
* @return {number}
|
|
3787
|
-
*/
|
|
3788
|
-
proto.sniipbillerapi.AddressRevision.prototype.getAddressrevisionid = function() {
|
|
3789
|
-
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 1, 0));
|
|
3790
|
-
};
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
/** @param {number} value */
|
|
3794
|
-
proto.sniipbillerapi.AddressRevision.prototype.setAddressrevisionid = function(value) {
|
|
3795
|
-
jspb.Message.setField(this, 1, value);
|
|
3796
|
-
};
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
/**
|
|
3800
|
-
* optional bool requiresReview = 2;
|
|
3801
|
-
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
3802
|
-
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
3803
|
-
* @return {boolean}
|
|
3804
|
-
*/
|
|
3805
|
-
proto.sniipbillerapi.AddressRevision.prototype.getRequiresreview = function() {
|
|
3806
|
-
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 2, false));
|
|
3807
|
-
};
|
|
3808
|
-
|
|
3809
|
-
|
|
3810
|
-
/** @param {boolean} value */
|
|
3811
|
-
proto.sniipbillerapi.AddressRevision.prototype.setRequiresreview = function(value) {
|
|
3812
|
-
jspb.Message.setField(this, 2, value);
|
|
3813
|
-
};
|
|
3814
|
-
|
|
3815
|
-
|
|
3816
|
-
/**
|
|
3817
|
-
* optional string creationTimeStamp = 3;
|
|
3818
|
-
* @return {string}
|
|
3819
|
-
*/
|
|
3820
|
-
proto.sniipbillerapi.AddressRevision.prototype.getCreationtimestamp = function() {
|
|
3821
|
-
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 3, ""));
|
|
3822
|
-
};
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
/** @param {string} value */
|
|
3826
|
-
proto.sniipbillerapi.AddressRevision.prototype.setCreationtimestamp = function(value) {
|
|
3827
|
-
jspb.Message.setField(this, 3, value);
|
|
3828
|
-
};
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
/**
|
|
3832
|
-
* optional string appliedTimeStamp = 4;
|
|
3833
|
-
* @return {string}
|
|
3834
|
-
*/
|
|
3835
|
-
proto.sniipbillerapi.AddressRevision.prototype.getAppliedtimestamp = function() {
|
|
3836
|
-
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 4, ""));
|
|
3837
|
-
};
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
/** @param {string} value */
|
|
3841
|
-
proto.sniipbillerapi.AddressRevision.prototype.setAppliedtimestamp = function(value) {
|
|
3842
|
-
jspb.Message.setField(this, 4, value);
|
|
3843
|
-
};
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
/**
|
|
3847
|
-
* optional int64 attachmentId = 5;
|
|
3848
|
-
* @return {number}
|
|
3849
|
-
*/
|
|
3850
|
-
proto.sniipbillerapi.AddressRevision.prototype.getAttachmentid = function() {
|
|
3851
|
-
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 5, 0));
|
|
3852
|
-
};
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
/** @param {number} value */
|
|
3856
|
-
proto.sniipbillerapi.AddressRevision.prototype.setAttachmentid = function(value) {
|
|
3857
|
-
jspb.Message.setField(this, 5, value);
|
|
3858
|
-
};
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
/**
|
|
3862
|
-
* optional int64 billerId = 6;
|
|
3863
|
-
* @return {number}
|
|
3864
|
-
*/
|
|
3865
|
-
proto.sniipbillerapi.AddressRevision.prototype.getBillerid = function() {
|
|
3866
|
-
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 6, 0));
|
|
3867
|
-
};
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
/** @param {number} value */
|
|
3871
|
-
proto.sniipbillerapi.AddressRevision.prototype.setBillerid = function(value) {
|
|
3872
|
-
jspb.Message.setField(this, 6, value);
|
|
3873
|
-
};
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
/**
|
|
3877
|
-
* optional string country = 7;
|
|
3878
|
-
* @return {string}
|
|
3879
|
-
*/
|
|
3880
|
-
proto.sniipbillerapi.AddressRevision.prototype.getCountry = function() {
|
|
3881
|
-
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 7, ""));
|
|
3882
|
-
};
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
/** @param {string} value */
|
|
3886
|
-
proto.sniipbillerapi.AddressRevision.prototype.setCountry = function(value) {
|
|
3887
|
-
jspb.Message.setField(this, 7, value);
|
|
3888
|
-
};
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
/**
|
|
3892
|
-
* optional string state = 8;
|
|
3893
|
-
* @return {string}
|
|
3894
|
-
*/
|
|
3895
|
-
proto.sniipbillerapi.AddressRevision.prototype.getState = function() {
|
|
3896
|
-
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 8, ""));
|
|
3897
|
-
};
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
/** @param {string} value */
|
|
3901
|
-
proto.sniipbillerapi.AddressRevision.prototype.setState = function(value) {
|
|
3902
|
-
jspb.Message.setField(this, 8, value);
|
|
3903
|
-
};
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
/**
|
|
3907
|
-
* optional string addressLine1 = 9;
|
|
3908
|
-
* @return {string}
|
|
3909
|
-
*/
|
|
3910
|
-
proto.sniipbillerapi.AddressRevision.prototype.getAddressline1 = function() {
|
|
3911
|
-
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 9, ""));
|
|
3912
|
-
};
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
/** @param {string} value */
|
|
3916
|
-
proto.sniipbillerapi.AddressRevision.prototype.setAddressline1 = function(value) {
|
|
3917
|
-
jspb.Message.setField(this, 9, value);
|
|
3918
|
-
};
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
/**
|
|
3922
|
-
* optional string addressLine2 = 10;
|
|
3923
|
-
* @return {string}
|
|
3924
|
-
*/
|
|
3925
|
-
proto.sniipbillerapi.AddressRevision.prototype.getAddressline2 = function() {
|
|
3926
|
-
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 10, ""));
|
|
3927
|
-
};
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
/** @param {string} value */
|
|
3931
|
-
proto.sniipbillerapi.AddressRevision.prototype.setAddressline2 = function(value) {
|
|
3932
|
-
jspb.Message.setField(this, 10, value);
|
|
3933
|
-
};
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
/**
|
|
3937
|
-
* optional string suburb = 11;
|
|
3938
|
-
* @return {string}
|
|
3939
|
-
*/
|
|
3940
|
-
proto.sniipbillerapi.AddressRevision.prototype.getSuburb = function() {
|
|
3941
|
-
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 11, ""));
|
|
3942
|
-
};
|
|
3943
|
-
|
|
3944
|
-
|
|
3945
|
-
/** @param {string} value */
|
|
3946
|
-
proto.sniipbillerapi.AddressRevision.prototype.setSuburb = function(value) {
|
|
3947
|
-
jspb.Message.setField(this, 11, value);
|
|
3948
|
-
};
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
/**
|
|
3952
|
-
* optional string postcode = 12;
|
|
3953
|
-
* @return {string}
|
|
3954
|
-
*/
|
|
3955
|
-
proto.sniipbillerapi.AddressRevision.prototype.getPostcode = function() {
|
|
3956
|
-
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 12, ""));
|
|
3957
|
-
};
|
|
3958
|
-
|
|
3959
|
-
|
|
3960
|
-
/** @param {string} value */
|
|
3961
|
-
proto.sniipbillerapi.AddressRevision.prototype.setPostcode = function(value) {
|
|
3962
|
-
jspb.Message.setField(this, 12, value);
|
|
3963
|
-
};
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
|
|
3967
3511
|
/**
|
|
3968
3512
|
* Generated by JsPbCodeGenerator.
|
|
3969
3513
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -18406,10 +17950,169 @@ proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest.deserializeBina
|
|
|
18406
17950
|
/**
|
|
18407
17951
|
* Class method variant: serializes the given message to binary data
|
|
18408
17952
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
18409
|
-
* @param {!proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest} message
|
|
17953
|
+
* @param {!proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest} message
|
|
17954
|
+
* @param {!jspb.BinaryWriter} writer
|
|
17955
|
+
*/
|
|
17956
|
+
proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest.serializeBinaryToWriter = function(message, writer) {
|
|
17957
|
+
message.serializeBinaryToWriter(writer);
|
|
17958
|
+
};
|
|
17959
|
+
|
|
17960
|
+
|
|
17961
|
+
/**
|
|
17962
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
17963
|
+
* @return {!Uint8Array}
|
|
17964
|
+
*/
|
|
17965
|
+
proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest.prototype.serializeBinary = function() {
|
|
17966
|
+
var writer = new jspb.BinaryWriter();
|
|
17967
|
+
this.serializeBinaryToWriter(writer);
|
|
17968
|
+
return writer.getResultBuffer();
|
|
17969
|
+
};
|
|
17970
|
+
|
|
17971
|
+
|
|
17972
|
+
/**
|
|
17973
|
+
* Serializes the message to binary data (in protobuf wire format),
|
|
17974
|
+
* writing to the given BinaryWriter.
|
|
17975
|
+
* @param {!jspb.BinaryWriter} writer
|
|
17976
|
+
*/
|
|
17977
|
+
proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest.prototype.serializeBinaryToWriter = function (writer) {
|
|
17978
|
+
var f = undefined;
|
|
17979
|
+
f = this.getBillerid();
|
|
17980
|
+
if (f !== 0) {
|
|
17981
|
+
writer.writeInt64(
|
|
17982
|
+
1,
|
|
17983
|
+
f
|
|
17984
|
+
);
|
|
17985
|
+
}
|
|
17986
|
+
};
|
|
17987
|
+
|
|
17988
|
+
|
|
17989
|
+
/**
|
|
17990
|
+
* Creates a deep clone of this proto. No data is shared with the original.
|
|
17991
|
+
* @return {!proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest} The clone.
|
|
17992
|
+
*/
|
|
17993
|
+
proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest.prototype.cloneMessage = function() {
|
|
17994
|
+
return /** @type {!proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest} */ (jspb.Message.cloneMessage(this));
|
|
17995
|
+
};
|
|
17996
|
+
|
|
17997
|
+
|
|
17998
|
+
/**
|
|
17999
|
+
* optional int64 billerId = 1;
|
|
18000
|
+
* @return {number}
|
|
18001
|
+
*/
|
|
18002
|
+
proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest.prototype.getBillerid = function() {
|
|
18003
|
+
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 1, 0));
|
|
18004
|
+
};
|
|
18005
|
+
|
|
18006
|
+
|
|
18007
|
+
/** @param {number} value */
|
|
18008
|
+
proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest.prototype.setBillerid = function(value) {
|
|
18009
|
+
jspb.Message.setField(this, 1, value);
|
|
18010
|
+
};
|
|
18011
|
+
|
|
18012
|
+
|
|
18013
|
+
|
|
18014
|
+
/**
|
|
18015
|
+
* Generated by JsPbCodeGenerator.
|
|
18016
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
18017
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
18018
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
18019
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
18020
|
+
* valid.
|
|
18021
|
+
* @extends {jspb.Message}
|
|
18022
|
+
* @constructor
|
|
18023
|
+
*/
|
|
18024
|
+
proto.sniipbillerapi.GetBillerAddressRequest = function(opt_data) {
|
|
18025
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
18026
|
+
};
|
|
18027
|
+
goog.inherits(proto.sniipbillerapi.GetBillerAddressRequest, jspb.Message);
|
|
18028
|
+
if (goog.DEBUG && !COMPILED) {
|
|
18029
|
+
proto.sniipbillerapi.GetBillerAddressRequest.displayName = 'proto.sniipbillerapi.GetBillerAddressRequest';
|
|
18030
|
+
}
|
|
18031
|
+
|
|
18032
|
+
|
|
18033
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
18034
|
+
/**
|
|
18035
|
+
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
18036
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
18037
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
18038
|
+
* For the list of reserved names please see:
|
|
18039
|
+
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
18040
|
+
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
18041
|
+
* for transitional soy proto support: http://goto/soy-param-migration
|
|
18042
|
+
* @return {!Object}
|
|
18043
|
+
*/
|
|
18044
|
+
proto.sniipbillerapi.GetBillerAddressRequest.prototype.toObject = function(opt_includeInstance) {
|
|
18045
|
+
return proto.sniipbillerapi.GetBillerAddressRequest.toObject(opt_includeInstance, this);
|
|
18046
|
+
};
|
|
18047
|
+
|
|
18048
|
+
|
|
18049
|
+
/**
|
|
18050
|
+
* Static version of the {@see toObject} method.
|
|
18051
|
+
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
18052
|
+
* instance for transitional soy proto support:
|
|
18053
|
+
* http://goto/soy-param-migration
|
|
18054
|
+
* @param {!proto.sniipbillerapi.GetBillerAddressRequest} msg The msg instance to transform.
|
|
18055
|
+
* @return {!Object}
|
|
18056
|
+
*/
|
|
18057
|
+
proto.sniipbillerapi.GetBillerAddressRequest.toObject = function(includeInstance, msg) {
|
|
18058
|
+
var f, obj = {
|
|
18059
|
+
billerid: msg.getBillerid()
|
|
18060
|
+
};
|
|
18061
|
+
|
|
18062
|
+
if (includeInstance) {
|
|
18063
|
+
obj.$jspbMessageInstance = msg;
|
|
18064
|
+
}
|
|
18065
|
+
return obj;
|
|
18066
|
+
};
|
|
18067
|
+
}
|
|
18068
|
+
|
|
18069
|
+
|
|
18070
|
+
/**
|
|
18071
|
+
* Deserializes binary data (in protobuf wire format).
|
|
18072
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
18073
|
+
* @return {!proto.sniipbillerapi.GetBillerAddressRequest}
|
|
18074
|
+
*/
|
|
18075
|
+
proto.sniipbillerapi.GetBillerAddressRequest.deserializeBinary = function(bytes) {
|
|
18076
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
18077
|
+
var msg = new proto.sniipbillerapi.GetBillerAddressRequest;
|
|
18078
|
+
return proto.sniipbillerapi.GetBillerAddressRequest.deserializeBinaryFromReader(msg, reader);
|
|
18079
|
+
};
|
|
18080
|
+
|
|
18081
|
+
|
|
18082
|
+
/**
|
|
18083
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
18084
|
+
* given reader into the given message object.
|
|
18085
|
+
* @param {!proto.sniipbillerapi.GetBillerAddressRequest} msg The message object to deserialize into.
|
|
18086
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
18087
|
+
* @return {!proto.sniipbillerapi.GetBillerAddressRequest}
|
|
18088
|
+
*/
|
|
18089
|
+
proto.sniipbillerapi.GetBillerAddressRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
18090
|
+
while (reader.nextField()) {
|
|
18091
|
+
if (reader.isEndGroup()) {
|
|
18092
|
+
break;
|
|
18093
|
+
}
|
|
18094
|
+
var field = reader.getFieldNumber();
|
|
18095
|
+
switch (field) {
|
|
18096
|
+
case 1:
|
|
18097
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
18098
|
+
msg.setBillerid(value);
|
|
18099
|
+
break;
|
|
18100
|
+
default:
|
|
18101
|
+
reader.skipField();
|
|
18102
|
+
break;
|
|
18103
|
+
}
|
|
18104
|
+
}
|
|
18105
|
+
return msg;
|
|
18106
|
+
};
|
|
18107
|
+
|
|
18108
|
+
|
|
18109
|
+
/**
|
|
18110
|
+
* Class method variant: serializes the given message to binary data
|
|
18111
|
+
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
18112
|
+
* @param {!proto.sniipbillerapi.GetBillerAddressRequest} message
|
|
18410
18113
|
* @param {!jspb.BinaryWriter} writer
|
|
18411
18114
|
*/
|
|
18412
|
-
proto.sniipbillerapi.
|
|
18115
|
+
proto.sniipbillerapi.GetBillerAddressRequest.serializeBinaryToWriter = function(message, writer) {
|
|
18413
18116
|
message.serializeBinaryToWriter(writer);
|
|
18414
18117
|
};
|
|
18415
18118
|
|
|
@@ -18418,7 +18121,7 @@ proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest.serializeBinary
|
|
|
18418
18121
|
* Serializes the message to binary data (in protobuf wire format).
|
|
18419
18122
|
* @return {!Uint8Array}
|
|
18420
18123
|
*/
|
|
18421
|
-
proto.sniipbillerapi.
|
|
18124
|
+
proto.sniipbillerapi.GetBillerAddressRequest.prototype.serializeBinary = function() {
|
|
18422
18125
|
var writer = new jspb.BinaryWriter();
|
|
18423
18126
|
this.serializeBinaryToWriter(writer);
|
|
18424
18127
|
return writer.getResultBuffer();
|
|
@@ -18430,7 +18133,7 @@ proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest.prototype.seria
|
|
|
18430
18133
|
* writing to the given BinaryWriter.
|
|
18431
18134
|
* @param {!jspb.BinaryWriter} writer
|
|
18432
18135
|
*/
|
|
18433
|
-
proto.sniipbillerapi.
|
|
18136
|
+
proto.sniipbillerapi.GetBillerAddressRequest.prototype.serializeBinaryToWriter = function (writer) {
|
|
18434
18137
|
var f = undefined;
|
|
18435
18138
|
f = this.getBillerid();
|
|
18436
18139
|
if (f !== 0) {
|
|
@@ -18444,10 +18147,10 @@ proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest.prototype.seria
|
|
|
18444
18147
|
|
|
18445
18148
|
/**
|
|
18446
18149
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
18447
|
-
* @return {!proto.sniipbillerapi.
|
|
18150
|
+
* @return {!proto.sniipbillerapi.GetBillerAddressRequest} The clone.
|
|
18448
18151
|
*/
|
|
18449
|
-
proto.sniipbillerapi.
|
|
18450
|
-
return /** @type {!proto.sniipbillerapi.
|
|
18152
|
+
proto.sniipbillerapi.GetBillerAddressRequest.prototype.cloneMessage = function() {
|
|
18153
|
+
return /** @type {!proto.sniipbillerapi.GetBillerAddressRequest} */ (jspb.Message.cloneMessage(this));
|
|
18451
18154
|
};
|
|
18452
18155
|
|
|
18453
18156
|
|
|
@@ -18455,13 +18158,13 @@ proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest.prototype.clone
|
|
|
18455
18158
|
* optional int64 billerId = 1;
|
|
18456
18159
|
* @return {number}
|
|
18457
18160
|
*/
|
|
18458
|
-
proto.sniipbillerapi.
|
|
18161
|
+
proto.sniipbillerapi.GetBillerAddressRequest.prototype.getBillerid = function() {
|
|
18459
18162
|
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 1, 0));
|
|
18460
18163
|
};
|
|
18461
18164
|
|
|
18462
18165
|
|
|
18463
18166
|
/** @param {number} value */
|
|
18464
|
-
proto.sniipbillerapi.
|
|
18167
|
+
proto.sniipbillerapi.GetBillerAddressRequest.prototype.setBillerid = function(value) {
|
|
18465
18168
|
jspb.Message.setField(this, 1, value);
|
|
18466
18169
|
};
|
|
18467
18170
|
|
|
@@ -18477,12 +18180,12 @@ proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest.prototype.setBi
|
|
|
18477
18180
|
* @extends {jspb.Message}
|
|
18478
18181
|
* @constructor
|
|
18479
18182
|
*/
|
|
18480
|
-
proto.sniipbillerapi.
|
|
18183
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest = function(opt_data) {
|
|
18481
18184
|
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
18482
18185
|
};
|
|
18483
|
-
goog.inherits(proto.sniipbillerapi.
|
|
18186
|
+
goog.inherits(proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest, jspb.Message);
|
|
18484
18187
|
if (goog.DEBUG && !COMPILED) {
|
|
18485
|
-
proto.sniipbillerapi.
|
|
18188
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.displayName = 'proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest';
|
|
18486
18189
|
}
|
|
18487
18190
|
|
|
18488
18191
|
|
|
@@ -18497,8 +18200,8 @@ if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
|
18497
18200
|
* for transitional soy proto support: http://goto/soy-param-migration
|
|
18498
18201
|
* @return {!Object}
|
|
18499
18202
|
*/
|
|
18500
|
-
proto.sniipbillerapi.
|
|
18501
|
-
return proto.sniipbillerapi.
|
|
18203
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.prototype.toObject = function(opt_includeInstance) {
|
|
18204
|
+
return proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.toObject(opt_includeInstance, this);
|
|
18502
18205
|
};
|
|
18503
18206
|
|
|
18504
18207
|
|
|
@@ -18507,12 +18210,14 @@ proto.sniipbillerapi.GetBillerAddressRequest.prototype.toObject = function(opt_i
|
|
|
18507
18210
|
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
18508
18211
|
* instance for transitional soy proto support:
|
|
18509
18212
|
* http://goto/soy-param-migration
|
|
18510
|
-
* @param {!proto.sniipbillerapi.
|
|
18213
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest} msg The msg instance to transform.
|
|
18511
18214
|
* @return {!Object}
|
|
18512
18215
|
*/
|
|
18513
|
-
proto.sniipbillerapi.
|
|
18216
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.toObject = function(includeInstance, msg) {
|
|
18514
18217
|
var f, obj = {
|
|
18515
|
-
|
|
18218
|
+
paymentprocessor: msg.getPaymentprocessor(),
|
|
18219
|
+
billercode: msg.getBillercode(),
|
|
18220
|
+
includeallconfigs: msg.getIncludeallconfigs()
|
|
18516
18221
|
};
|
|
18517
18222
|
|
|
18518
18223
|
if (includeInstance) {
|
|
@@ -18526,23 +18231,237 @@ proto.sniipbillerapi.GetBillerAddressRequest.toObject = function(includeInstance
|
|
|
18526
18231
|
/**
|
|
18527
18232
|
* Deserializes binary data (in protobuf wire format).
|
|
18528
18233
|
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
18529
|
-
* @return {!proto.sniipbillerapi.
|
|
18234
|
+
* @return {!proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest}
|
|
18530
18235
|
*/
|
|
18531
|
-
proto.sniipbillerapi.
|
|
18236
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.deserializeBinary = function(bytes) {
|
|
18532
18237
|
var reader = new jspb.BinaryReader(bytes);
|
|
18533
|
-
var msg = new proto.sniipbillerapi.
|
|
18534
|
-
return proto.sniipbillerapi.
|
|
18238
|
+
var msg = new proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest;
|
|
18239
|
+
return proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.deserializeBinaryFromReader(msg, reader);
|
|
18535
18240
|
};
|
|
18536
18241
|
|
|
18537
18242
|
|
|
18538
18243
|
/**
|
|
18539
18244
|
* Deserializes binary data (in protobuf wire format) from the
|
|
18540
18245
|
* given reader into the given message object.
|
|
18541
|
-
* @param {!proto.sniipbillerapi.
|
|
18246
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest} msg The message object to deserialize into.
|
|
18542
18247
|
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
18543
|
-
* @return {!proto.sniipbillerapi.
|
|
18248
|
+
* @return {!proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest}
|
|
18544
18249
|
*/
|
|
18545
|
-
proto.sniipbillerapi.
|
|
18250
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
18251
|
+
while (reader.nextField()) {
|
|
18252
|
+
if (reader.isEndGroup()) {
|
|
18253
|
+
break;
|
|
18254
|
+
}
|
|
18255
|
+
var field = reader.getFieldNumber();
|
|
18256
|
+
switch (field) {
|
|
18257
|
+
case 1:
|
|
18258
|
+
var value = /** @type {!proto.sniipbillerapi.PaymentProcessor} */ (reader.readEnum());
|
|
18259
|
+
msg.setPaymentprocessor(value);
|
|
18260
|
+
break;
|
|
18261
|
+
case 2:
|
|
18262
|
+
var value = /** @type {string} */ (reader.readString());
|
|
18263
|
+
msg.setBillercode(value);
|
|
18264
|
+
break;
|
|
18265
|
+
case 3:
|
|
18266
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
18267
|
+
msg.setIncludeallconfigs(value);
|
|
18268
|
+
break;
|
|
18269
|
+
default:
|
|
18270
|
+
reader.skipField();
|
|
18271
|
+
break;
|
|
18272
|
+
}
|
|
18273
|
+
}
|
|
18274
|
+
return msg;
|
|
18275
|
+
};
|
|
18276
|
+
|
|
18277
|
+
|
|
18278
|
+
/**
|
|
18279
|
+
* Class method variant: serializes the given message to binary data
|
|
18280
|
+
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
18281
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest} message
|
|
18282
|
+
* @param {!jspb.BinaryWriter} writer
|
|
18283
|
+
*/
|
|
18284
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.serializeBinaryToWriter = function(message, writer) {
|
|
18285
|
+
message.serializeBinaryToWriter(writer);
|
|
18286
|
+
};
|
|
18287
|
+
|
|
18288
|
+
|
|
18289
|
+
/**
|
|
18290
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
18291
|
+
* @return {!Uint8Array}
|
|
18292
|
+
*/
|
|
18293
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.prototype.serializeBinary = function() {
|
|
18294
|
+
var writer = new jspb.BinaryWriter();
|
|
18295
|
+
this.serializeBinaryToWriter(writer);
|
|
18296
|
+
return writer.getResultBuffer();
|
|
18297
|
+
};
|
|
18298
|
+
|
|
18299
|
+
|
|
18300
|
+
/**
|
|
18301
|
+
* Serializes the message to binary data (in protobuf wire format),
|
|
18302
|
+
* writing to the given BinaryWriter.
|
|
18303
|
+
* @param {!jspb.BinaryWriter} writer
|
|
18304
|
+
*/
|
|
18305
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.prototype.serializeBinaryToWriter = function (writer) {
|
|
18306
|
+
var f = undefined;
|
|
18307
|
+
f = this.getPaymentprocessor();
|
|
18308
|
+
if (f !== 0.0) {
|
|
18309
|
+
writer.writeEnum(
|
|
18310
|
+
1,
|
|
18311
|
+
f
|
|
18312
|
+
);
|
|
18313
|
+
}
|
|
18314
|
+
f = this.getBillercode();
|
|
18315
|
+
if (f.length > 0) {
|
|
18316
|
+
writer.writeString(
|
|
18317
|
+
2,
|
|
18318
|
+
f
|
|
18319
|
+
);
|
|
18320
|
+
}
|
|
18321
|
+
f = this.getIncludeallconfigs();
|
|
18322
|
+
if (f) {
|
|
18323
|
+
writer.writeBool(
|
|
18324
|
+
3,
|
|
18325
|
+
f
|
|
18326
|
+
);
|
|
18327
|
+
}
|
|
18328
|
+
};
|
|
18329
|
+
|
|
18330
|
+
|
|
18331
|
+
/**
|
|
18332
|
+
* Creates a deep clone of this proto. No data is shared with the original.
|
|
18333
|
+
* @return {!proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest} The clone.
|
|
18334
|
+
*/
|
|
18335
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.prototype.cloneMessage = function() {
|
|
18336
|
+
return /** @type {!proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest} */ (jspb.Message.cloneMessage(this));
|
|
18337
|
+
};
|
|
18338
|
+
|
|
18339
|
+
|
|
18340
|
+
/**
|
|
18341
|
+
* optional PaymentProcessor paymentProcessor = 1;
|
|
18342
|
+
* @return {!proto.sniipbillerapi.PaymentProcessor}
|
|
18343
|
+
*/
|
|
18344
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.prototype.getPaymentprocessor = function() {
|
|
18345
|
+
return /** @type {!proto.sniipbillerapi.PaymentProcessor} */ (jspb.Message.getFieldProto3(this, 1, 0));
|
|
18346
|
+
};
|
|
18347
|
+
|
|
18348
|
+
|
|
18349
|
+
/** @param {!proto.sniipbillerapi.PaymentProcessor} value */
|
|
18350
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.prototype.setPaymentprocessor = function(value) {
|
|
18351
|
+
jspb.Message.setField(this, 1, value);
|
|
18352
|
+
};
|
|
18353
|
+
|
|
18354
|
+
|
|
18355
|
+
/**
|
|
18356
|
+
* optional string billerCode = 2;
|
|
18357
|
+
* @return {string}
|
|
18358
|
+
*/
|
|
18359
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.prototype.getBillercode = function() {
|
|
18360
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 2, ""));
|
|
18361
|
+
};
|
|
18362
|
+
|
|
18363
|
+
|
|
18364
|
+
/** @param {string} value */
|
|
18365
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.prototype.setBillercode = function(value) {
|
|
18366
|
+
jspb.Message.setField(this, 2, value);
|
|
18367
|
+
};
|
|
18368
|
+
|
|
18369
|
+
|
|
18370
|
+
/**
|
|
18371
|
+
* optional bool includeAllConfigs = 3;
|
|
18372
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
18373
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
18374
|
+
* @return {boolean}
|
|
18375
|
+
*/
|
|
18376
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.prototype.getIncludeallconfigs = function() {
|
|
18377
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 3, false));
|
|
18378
|
+
};
|
|
18379
|
+
|
|
18380
|
+
|
|
18381
|
+
/** @param {boolean} value */
|
|
18382
|
+
proto.sniipbillerapi.GetBillerByBillerCodeAndpaymentProcessorInternalRequest.prototype.setIncludeallconfigs = function(value) {
|
|
18383
|
+
jspb.Message.setField(this, 3, value);
|
|
18384
|
+
};
|
|
18385
|
+
|
|
18386
|
+
|
|
18387
|
+
|
|
18388
|
+
/**
|
|
18389
|
+
* Generated by JsPbCodeGenerator.
|
|
18390
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
18391
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
18392
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
18393
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
18394
|
+
* valid.
|
|
18395
|
+
* @extends {jspb.Message}
|
|
18396
|
+
* @constructor
|
|
18397
|
+
*/
|
|
18398
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest = function(opt_data) {
|
|
18399
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
18400
|
+
};
|
|
18401
|
+
goog.inherits(proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest, jspb.Message);
|
|
18402
|
+
if (goog.DEBUG && !COMPILED) {
|
|
18403
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.displayName = 'proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest';
|
|
18404
|
+
}
|
|
18405
|
+
|
|
18406
|
+
|
|
18407
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
18408
|
+
/**
|
|
18409
|
+
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
18410
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
18411
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
18412
|
+
* For the list of reserved names please see:
|
|
18413
|
+
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
18414
|
+
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
18415
|
+
* for transitional soy proto support: http://goto/soy-param-migration
|
|
18416
|
+
* @return {!Object}
|
|
18417
|
+
*/
|
|
18418
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.prototype.toObject = function(opt_includeInstance) {
|
|
18419
|
+
return proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.toObject(opt_includeInstance, this);
|
|
18420
|
+
};
|
|
18421
|
+
|
|
18422
|
+
|
|
18423
|
+
/**
|
|
18424
|
+
* Static version of the {@see toObject} method.
|
|
18425
|
+
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
18426
|
+
* instance for transitional soy proto support:
|
|
18427
|
+
* http://goto/soy-param-migration
|
|
18428
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest} msg The msg instance to transform.
|
|
18429
|
+
* @return {!Object}
|
|
18430
|
+
*/
|
|
18431
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.toObject = function(includeInstance, msg) {
|
|
18432
|
+
var f, obj = {
|
|
18433
|
+
billerconfigid: msg.getBillerconfigid(),
|
|
18434
|
+
includeallconfigs: msg.getIncludeallconfigs()
|
|
18435
|
+
};
|
|
18436
|
+
|
|
18437
|
+
if (includeInstance) {
|
|
18438
|
+
obj.$jspbMessageInstance = msg;
|
|
18439
|
+
}
|
|
18440
|
+
return obj;
|
|
18441
|
+
};
|
|
18442
|
+
}
|
|
18443
|
+
|
|
18444
|
+
|
|
18445
|
+
/**
|
|
18446
|
+
* Deserializes binary data (in protobuf wire format).
|
|
18447
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
18448
|
+
* @return {!proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest}
|
|
18449
|
+
*/
|
|
18450
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.deserializeBinary = function(bytes) {
|
|
18451
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
18452
|
+
var msg = new proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest;
|
|
18453
|
+
return proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.deserializeBinaryFromReader(msg, reader);
|
|
18454
|
+
};
|
|
18455
|
+
|
|
18456
|
+
|
|
18457
|
+
/**
|
|
18458
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
18459
|
+
* given reader into the given message object.
|
|
18460
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest} msg The message object to deserialize into.
|
|
18461
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
18462
|
+
* @return {!proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest}
|
|
18463
|
+
*/
|
|
18464
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
18546
18465
|
while (reader.nextField()) {
|
|
18547
18466
|
if (reader.isEndGroup()) {
|
|
18548
18467
|
break;
|
|
@@ -18551,7 +18470,11 @@ proto.sniipbillerapi.GetBillerAddressRequest.deserializeBinaryFromReader = funct
|
|
|
18551
18470
|
switch (field) {
|
|
18552
18471
|
case 1:
|
|
18553
18472
|
var value = /** @type {number} */ (reader.readInt64());
|
|
18554
|
-
msg.
|
|
18473
|
+
msg.setBillerconfigid(value);
|
|
18474
|
+
break;
|
|
18475
|
+
case 2:
|
|
18476
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
18477
|
+
msg.setIncludeallconfigs(value);
|
|
18555
18478
|
break;
|
|
18556
18479
|
default:
|
|
18557
18480
|
reader.skipField();
|
|
@@ -18565,10 +18488,10 @@ proto.sniipbillerapi.GetBillerAddressRequest.deserializeBinaryFromReader = funct
|
|
|
18565
18488
|
/**
|
|
18566
18489
|
* Class method variant: serializes the given message to binary data
|
|
18567
18490
|
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
18568
|
-
* @param {!proto.sniipbillerapi.
|
|
18491
|
+
* @param {!proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest} message
|
|
18569
18492
|
* @param {!jspb.BinaryWriter} writer
|
|
18570
18493
|
*/
|
|
18571
|
-
proto.sniipbillerapi.
|
|
18494
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.serializeBinaryToWriter = function(message, writer) {
|
|
18572
18495
|
message.serializeBinaryToWriter(writer);
|
|
18573
18496
|
};
|
|
18574
18497
|
|
|
@@ -18577,7 +18500,7 @@ proto.sniipbillerapi.GetBillerAddressRequest.serializeBinaryToWriter = function(
|
|
|
18577
18500
|
* Serializes the message to binary data (in protobuf wire format).
|
|
18578
18501
|
* @return {!Uint8Array}
|
|
18579
18502
|
*/
|
|
18580
|
-
proto.sniipbillerapi.
|
|
18503
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.prototype.serializeBinary = function() {
|
|
18581
18504
|
var writer = new jspb.BinaryWriter();
|
|
18582
18505
|
this.serializeBinaryToWriter(writer);
|
|
18583
18506
|
return writer.getResultBuffer();
|
|
@@ -18589,42 +18512,66 @@ proto.sniipbillerapi.GetBillerAddressRequest.prototype.serializeBinary = functio
|
|
|
18589
18512
|
* writing to the given BinaryWriter.
|
|
18590
18513
|
* @param {!jspb.BinaryWriter} writer
|
|
18591
18514
|
*/
|
|
18592
|
-
proto.sniipbillerapi.
|
|
18515
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.prototype.serializeBinaryToWriter = function (writer) {
|
|
18593
18516
|
var f = undefined;
|
|
18594
|
-
f = this.
|
|
18517
|
+
f = this.getBillerconfigid();
|
|
18595
18518
|
if (f !== 0) {
|
|
18596
18519
|
writer.writeInt64(
|
|
18597
18520
|
1,
|
|
18598
18521
|
f
|
|
18599
18522
|
);
|
|
18600
18523
|
}
|
|
18524
|
+
f = this.getIncludeallconfigs();
|
|
18525
|
+
if (f) {
|
|
18526
|
+
writer.writeBool(
|
|
18527
|
+
2,
|
|
18528
|
+
f
|
|
18529
|
+
);
|
|
18530
|
+
}
|
|
18601
18531
|
};
|
|
18602
18532
|
|
|
18603
18533
|
|
|
18604
18534
|
/**
|
|
18605
18535
|
* Creates a deep clone of this proto. No data is shared with the original.
|
|
18606
|
-
* @return {!proto.sniipbillerapi.
|
|
18536
|
+
* @return {!proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest} The clone.
|
|
18607
18537
|
*/
|
|
18608
|
-
proto.sniipbillerapi.
|
|
18609
|
-
return /** @type {!proto.sniipbillerapi.
|
|
18538
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.prototype.cloneMessage = function() {
|
|
18539
|
+
return /** @type {!proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest} */ (jspb.Message.cloneMessage(this));
|
|
18610
18540
|
};
|
|
18611
18541
|
|
|
18612
18542
|
|
|
18613
18543
|
/**
|
|
18614
|
-
* optional int64
|
|
18544
|
+
* optional int64 billerConfigId = 1;
|
|
18615
18545
|
* @return {number}
|
|
18616
18546
|
*/
|
|
18617
|
-
proto.sniipbillerapi.
|
|
18547
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.prototype.getBillerconfigid = function() {
|
|
18618
18548
|
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 1, 0));
|
|
18619
18549
|
};
|
|
18620
18550
|
|
|
18621
18551
|
|
|
18622
18552
|
/** @param {number} value */
|
|
18623
|
-
proto.sniipbillerapi.
|
|
18553
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.prototype.setBillerconfigid = function(value) {
|
|
18624
18554
|
jspb.Message.setField(this, 1, value);
|
|
18625
18555
|
};
|
|
18626
18556
|
|
|
18627
18557
|
|
|
18558
|
+
/**
|
|
18559
|
+
* optional bool includeAllConfigs = 2;
|
|
18560
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
18561
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
18562
|
+
* @return {boolean}
|
|
18563
|
+
*/
|
|
18564
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.prototype.getIncludeallconfigs = function() {
|
|
18565
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 2, false));
|
|
18566
|
+
};
|
|
18567
|
+
|
|
18568
|
+
|
|
18569
|
+
/** @param {boolean} value */
|
|
18570
|
+
proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest.prototype.setIncludeallconfigs = function(value) {
|
|
18571
|
+
jspb.Message.setField(this, 2, value);
|
|
18572
|
+
};
|
|
18573
|
+
|
|
18574
|
+
|
|
18628
18575
|
|
|
18629
18576
|
/**
|
|
18630
18577
|
* Generated by JsPbCodeGenerator.
|
|
@@ -27487,8 +27434,7 @@ proto.sniipbillerapi.RevisionCreateRequest.toObject = function(includeInstance,
|
|
|
27487
27434
|
var f, obj = {
|
|
27488
27435
|
type: msg.getType(),
|
|
27489
27436
|
biller: (f = msg.getBiller()) && proto.sniipbillerapi.BillerRevision.toObject(includeInstance, f),
|
|
27490
|
-
config: (f = msg.getConfig()) && proto.sniipbillerapi.BillerConfigRevision.toObject(includeInstance, f)
|
|
27491
|
-
address: (f = msg.getAddress()) && proto.sniipbillerapi.AddressRevision.toObject(includeInstance, f)
|
|
27437
|
+
config: (f = msg.getConfig()) && proto.sniipbillerapi.BillerConfigRevision.toObject(includeInstance, f)
|
|
27492
27438
|
};
|
|
27493
27439
|
|
|
27494
27440
|
if (includeInstance) {
|
|
@@ -27539,11 +27485,6 @@ proto.sniipbillerapi.RevisionCreateRequest.deserializeBinaryFromReader = functio
|
|
|
27539
27485
|
reader.readMessage(value,proto.sniipbillerapi.BillerConfigRevision.deserializeBinaryFromReader);
|
|
27540
27486
|
msg.setConfig(value);
|
|
27541
27487
|
break;
|
|
27542
|
-
case 4:
|
|
27543
|
-
var value = new proto.sniipbillerapi.AddressRevision;
|
|
27544
|
-
reader.readMessage(value,proto.sniipbillerapi.AddressRevision.deserializeBinaryFromReader);
|
|
27545
|
-
msg.setAddress(value);
|
|
27546
|
-
break;
|
|
27547
27488
|
default:
|
|
27548
27489
|
reader.skipField();
|
|
27549
27490
|
break;
|
|
@@ -27605,14 +27546,6 @@ proto.sniipbillerapi.RevisionCreateRequest.prototype.serializeBinaryToWriter = f
|
|
|
27605
27546
|
proto.sniipbillerapi.BillerConfigRevision.serializeBinaryToWriter
|
|
27606
27547
|
);
|
|
27607
27548
|
}
|
|
27608
|
-
f = this.getAddress();
|
|
27609
|
-
if (f != null) {
|
|
27610
|
-
writer.writeMessage(
|
|
27611
|
-
4,
|
|
27612
|
-
f,
|
|
27613
|
-
proto.sniipbillerapi.AddressRevision.serializeBinaryToWriter
|
|
27614
|
-
);
|
|
27615
|
-
}
|
|
27616
27549
|
};
|
|
27617
27550
|
|
|
27618
27551
|
|
|
@@ -27700,36 +27633,6 @@ proto.sniipbillerapi.RevisionCreateRequest.prototype.hasConfig = function() {
|
|
|
27700
27633
|
};
|
|
27701
27634
|
|
|
27702
27635
|
|
|
27703
|
-
/**
|
|
27704
|
-
* optional AddressRevision address = 4;
|
|
27705
|
-
* @return {proto.sniipbillerapi.AddressRevision}
|
|
27706
|
-
*/
|
|
27707
|
-
proto.sniipbillerapi.RevisionCreateRequest.prototype.getAddress = function() {
|
|
27708
|
-
return /** @type{proto.sniipbillerapi.AddressRevision} */ (
|
|
27709
|
-
jspb.Message.getWrapperField(this, proto.sniipbillerapi.AddressRevision, 4));
|
|
27710
|
-
};
|
|
27711
|
-
|
|
27712
|
-
|
|
27713
|
-
/** @param {proto.sniipbillerapi.AddressRevision|undefined} value */
|
|
27714
|
-
proto.sniipbillerapi.RevisionCreateRequest.prototype.setAddress = function(value) {
|
|
27715
|
-
jspb.Message.setWrapperField(this, 4, value);
|
|
27716
|
-
};
|
|
27717
|
-
|
|
27718
|
-
|
|
27719
|
-
proto.sniipbillerapi.RevisionCreateRequest.prototype.clearAddress = function() {
|
|
27720
|
-
this.setAddress(undefined);
|
|
27721
|
-
};
|
|
27722
|
-
|
|
27723
|
-
|
|
27724
|
-
/**
|
|
27725
|
-
* Returns whether this field is set.
|
|
27726
|
-
* @return{!boolean}
|
|
27727
|
-
*/
|
|
27728
|
-
proto.sniipbillerapi.RevisionCreateRequest.prototype.hasAddress = function() {
|
|
27729
|
-
return jspb.Message.getField(this, 4) != null;
|
|
27730
|
-
};
|
|
27731
|
-
|
|
27732
|
-
|
|
27733
27636
|
|
|
27734
27637
|
/**
|
|
27735
27638
|
* Generated by JsPbCodeGenerator.
|
|
@@ -33024,13 +32927,22 @@ proto.sniipbillerapi.VerifyBillerRequest.prototype.setBillerid = function(value)
|
|
|
33024
32927
|
};
|
|
33025
32928
|
|
|
33026
32929
|
|
|
32930
|
+
/**
|
|
32931
|
+
* @enum {number}
|
|
32932
|
+
*/
|
|
32933
|
+
proto.sniipbillerapi.PaymentProcessor = {
|
|
32934
|
+
AUSPOST: 0,
|
|
32935
|
+
BPAY: 1,
|
|
32936
|
+
SNIIP: 2,
|
|
32937
|
+
XERO: 3
|
|
32938
|
+
};
|
|
32939
|
+
|
|
33027
32940
|
/**
|
|
33028
32941
|
* @enum {number}
|
|
33029
32942
|
*/
|
|
33030
32943
|
proto.sniipbillerapi.RevisionType = {
|
|
33031
32944
|
BILLER: 0,
|
|
33032
|
-
BILLER_CONFIG: 1
|
|
33033
|
-
ADDRESS: 2
|
|
32945
|
+
BILLER_CONFIG: 1
|
|
33034
32946
|
};
|
|
33035
32947
|
|
|
33036
32948
|
goog.object.extend(exports, proto.sniipbillerapi);
|