/** * OriginStamp Client * * OpenAPI spec version: 3.0 * OriginStamp Documentation: https://doc.originstamp.org * Contact: mail@originstamp.com * Generated by: https://github.com/swagger-api/swagger-codegen.git */ /** * request object for proof request. */ export interface ProofRequest { /** * 0: Bitcoin */ currency: number; /** * Hash in HEX representation for which the proof should be created. We allow the use of SHA-256. Note: We handle the hashes in lower-case. */ hashString: string; /** * Specifies which type of file should be returned. Possible value(s): 0: proof with a seed file (txt) or proof with a merkle tree (xml) 1: proof with a PDF file Other formats will follow. */ proofType: number; }