/* tslint:disable */
/* eslint-disable */
/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

/**
 *
 * @export
 * @interface PresignMessage
 */
export interface PresignMessage {
  /**
   * A blockchain address representing payer\'s address
   * @type {string}
   * @memberof PresignMessage
   */
  from: string;
  /**
   * A blockchain address representing payee\'s address
   * @type {string}
   * @memberof PresignMessage
   */
  to: string;
  /**
   * Amount to be transferred
   * @type {string}
   * @memberof PresignMessage
   */
  value: string;
  /**
   * the timestamp after which this is valid (unix time)
   * @type {number}
   * @memberof PresignMessage
   */
  validAfter: number;
  /**
   * the timestamp before which this is valid (unix time)
   * @type {number}
   * @memberof PresignMessage
   */
  validBefore: number;
  /**
   * unique nonce
   * @type {string}
   * @memberof PresignMessage
   */
  nonce: string;
}
