Class: Spikard::ContactInfo

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeContactInfo

Returns a new instance of ContactInfo.

Parameters:

  • name: (String)
  • email: (String)
  • url: (String)


367
# File 'sig/types.rbs', line 367

def initialize: (?name: String, ?email: String, ?url: String) -> void

Instance Attribute Details

#emailString (readonly)

Returns the value of attribute email.

Returns:

  • (String)


364
365
366
# File 'sig/types.rbs', line 364

def email
  @email
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


363
364
365
# File 'sig/types.rbs', line 363

def name
  @name
end

#urlString (readonly)

Returns the value of attribute url.

Returns:

  • (String)


365
366
367
# File 'sig/types.rbs', line 365

def url
  @url
end