class
TwitterAds::Request
- TwitterAds::Request
- Reference
- Object
Defined in:
twitter-ads/request.crConstructors
Instance Method Summary
- #full_url : String
- #http : HTTP::Request
- #http=(v : HTTP::Request) : HTTP::Request
-
#http=(v : Nil)
nilassignments are always ignored - #http? : HTTP::Request | Nil
- #method : Method
- #method=(v : Method) : Method
-
#method=(v : Nil)
nilassignments are always ignored - #method? : Method | Nil
-
#params : Hash(String, String)
var foo = Foo.new(self) [name.value.id ] Foo.new(self) [name.value.name] new [name.value.id.stringify.gsub(/.new\b.*$/, "")] "Foo"
-
#params=(v : Hash(String, String)) : Hash(String, String)
var foo = Foo.new(self) [name.value.id ] Foo.new(self) [name.value.name] new [name.value.id.stringify.gsub(/.new\b.*$/, "")] "Foo"
-
#params=(v : Nil)
nilassignments are always ignored -
#params? : Hash(String, String) | Nil
var foo = Foo.new(self) [name.value.id ] Foo.new(self) [name.value.name] new [name.value.id.stringify.gsub(/.new\b.*$/, "")] "Foo"
- #requested_at : Time
- #requested_at=(v : Time) : Time
-
#requested_at=(v : Nil)
nilassignments are always ignored - #requested_at? : Time | Nil
- #resource : String
- #resource=(v : String) : String
-
#resource=(v : Nil)
nilassignments are always ignored - #resource? : String | Nil
- #runtime_uri : URI
- #runtime_uri=(v : URI) : URI
-
#runtime_uri=(v : Nil)
nilassignments are always ignored - #runtime_uri? : URI | Nil
-
#to_s(io : IO)
Appends a short String representation of this object which includes its class name and its object address.
Constructor Detail
Instance Method Detail
var foo = Foo.new(self) [name.value.id ] Foo.new(self) [name.value.name] new [name.value.id.stringify.gsub(/.new\b.*$/, "")] "Foo"
var foo = Foo.new(self) [name.value.id ] Foo.new(self) [name.value.name] new [name.value.id.stringify.gsub(/.new\b.*$/, "")] "Foo"
var foo = Foo.new(self) [name.value.id ] Foo.new(self) [name.value.name] new [name.value.id.stringify.gsub(/.new\b.*$/, "")] "Foo"
Appends a short String representation of this object which includes its class name and its object address.
class Person
def initialize(@name : String, @age : Int32)
end
end
Person.new("John", 32).to_s # => #<Person:0x10a199f20>