Class: Rdmm::Queries::ListActressesQuery
- Inherits:
-
BaseQuery
- Object
- BaseQuery
- Rdmm::Queries::ListActressesQuery
show all
- Defined in:
- lib/rdmm/queries/list_actresses_query.rb
Instance Method Summary
collapse
Methods inherited from BaseQuery
#affiliate_id, #api_id, inherited, #initialize, property, #to_hash
Instance Method Details
#actress_id ⇒ Integer?
17
18
19
|
# File 'lib/rdmm/queries/list_actresses_query.rb', line 17
def actress_id
options[:id]
end
|
#birthday ⇒ String?
22
23
24
|
# File 'lib/rdmm/queries/list_actresses_query.rb', line 22
def birthday
format_from_and_to(options[:birthday_from], options[:birthday_to])
end
|
#bust ⇒ String?
27
28
29
|
# File 'lib/rdmm/queries/list_actresses_query.rb', line 27
def bust
format_from_and_to(options[:bust_from], options[:bust_to])
end
|
#height ⇒ String?
32
33
34
|
# File 'lib/rdmm/queries/list_actresses_query.rb', line 32
def height
format_from_and_to(options[:height_from], options[:height_to])
end
|
#hip ⇒ String?
37
38
39
|
# File 'lib/rdmm/queries/list_actresses_query.rb', line 37
def hip
format_from_and_to(options[:hip_from], options[:hip_from])
end
|
#hits ⇒ Integer?
42
43
44
|
# File 'lib/rdmm/queries/list_actresses_query.rb', line 42
def hits
options[:hits]
end
|
#initial ⇒ String?
47
48
49
|
# File 'lib/rdmm/queries/list_actresses_query.rb', line 47
def initial
options[:initial]
end
|
#keyword ⇒ String?
52
53
54
|
# File 'lib/rdmm/queries/list_actresses_query.rb', line 52
def keyword
options[:keyword]
end
|
#offset ⇒ Integer?
57
58
59
|
# File 'lib/rdmm/queries/list_actresses_query.rb', line 57
def offset
options[:offset]
end
|
#sort ⇒ String?
62
63
64
|
# File 'lib/rdmm/queries/list_actresses_query.rb', line 62
def sort
options[:sort]
end
|
#waist ⇒ String?
67
68
69
|
# File 'lib/rdmm/queries/list_actresses_query.rb', line 67
def waist
format_from_and_to(options[:waist_from], options[:waist_from])
end
|