2023-05-26 21:21:16 +00:00
|
|
|
/*
|
|
|
|
* This file is part of Stack Wallet.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2023 Cypher Stack
|
|
|
|
* All Rights Reserved.
|
|
|
|
* The code is distributed under GPLv3 license, see LICENSE file for details.
|
|
|
|
* Generated by Cypher Stack on 2023-05-26
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2023-01-02 21:16:01 +00:00
|
|
|
class PaynymResponse<T> {
|
|
|
|
final T? value;
|
|
|
|
final int statusCode;
|
|
|
|
final String message;
|
|
|
|
|
|
|
|
PaynymResponse(this.value, this.statusCode, this.message);
|
2023-01-04 14:34:18 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
String toString() {
|
|
|
|
return "PaynymResponse: value=$value, statusCode=$statusCode, message=$message";
|
|
|
|
}
|
2023-01-02 21:16:01 +00:00
|
|
|
}
|