Skip to content

Commit b218e0c

Browse files
croakyiampogo
authored andcommitted
sdk/ruby: document snapshot methods
Closes #2687 Author: Dan Croak <dan@statusok.com> Date: Thu Mar 8 14:56:31 2018 -0800 upstream:874e587a5fb55207c84fdaba4f776a26217e58ef
1 parent e0efeac commit b218e0c

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

lib/sequence/response_object.rb

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,22 +97,33 @@ def [](key)
9797
@data[key]
9898
end
9999

100+
# A snapshot of the actions's tags at the time of action creation
101+
# @return [Hash]
100102
def action_tags
101103
@data['action_tags']
102104
end
103105

106+
# A snapshot of the destination account's tags at the time of action
107+
# creation
108+
# @return [Hash]
104109
def destination_account_tags
105110
@data['destination_account_tags']
106111
end
107112

113+
# A snapshot of the flavor's tags at the time of action creation
114+
# @return [Hash]
108115
def flavor_tags
109116
@data['flavor_tags']
110117
end
111118

119+
# A snapshot of the source account's tags at the time of action creation
120+
# @return [Hash]
112121
def source_account_tags
113122
@data['source_account_tags']
114123
end
115124

125+
# A snapshot of the token's tags at the time of action creation
126+
# @return [Hash]
116127
def token_tags
117128
@data['token_tags']
118129
end

0 commit comments

Comments
 (0)