class Xooa::Response::PendingTransactionResponse
Attributes
resultId[RW]
resultUrl[RW]
Public Class Methods
new(resultId, resultUrl)
click to toggle source
Initialize PendingTransactionResponse
@param resultId result Id for the request in pending state @param resultUrl result Url for the request in pending state @return PendingTransactionResponse
# File lib/xooa/response/PendingTransactionResponse.rb, line 30 def initialize(resultId, resultUrl) @resultId = resultId @resultUrl = resultUrl end
Public Instance Methods
display()
click to toggle source
display the details for the PendingTransactionResponse
# File lib/xooa/response/PendingTransactionResponse.rb, line 36 def display puts("Result Id - #{@resultId}") puts("Result Url - #{@resultUrl}") end