Class: Stripe::Terminal::ConfigurationUpdateParams::Wifi::EnterpriseEapTls

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/terminal/configuration_update_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(ca_certificate_file: nil, client_certificate_file: nil, private_key_file: nil, private_key_file_password: nil, ssid: nil) ⇒ EnterpriseEapTls

Returns a new instance of EnterpriseEapTls.



509
510
511
512
513
514
515
516
517
518
519
520
521
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 509

def initialize(
  ca_certificate_file: nil,
  client_certificate_file: nil,
  private_key_file: nil,
  private_key_file_password: nil,
  ssid: nil
)
  @ca_certificate_file = ca_certificate_file
  @client_certificate_file = client_certificate_file
  @private_key_file = private_key_file
  @private_key_file_password = private_key_file_password
  @ssid = ssid
end

Instance Attribute Details

#ca_certificate_fileObject

A File ID representing a PEM file containing the server certificate



499
500
501
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 499

def ca_certificate_file
  @ca_certificate_file
end

#client_certificate_fileObject

A File ID representing a PEM file containing the client certificate



501
502
503
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 501

def client_certificate_file
  @client_certificate_file
end

#private_key_fileObject

A File ID representing a PEM file containing the client RSA private key



503
504
505
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 503

def private_key_file
  @private_key_file
end

#private_key_file_passwordObject

Password for the private key file



505
506
507
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 505

def private_key_file_password
  @private_key_file_password
end

#ssidObject

Name of the WiFi network



507
508
509
# File 'lib/stripe/params/terminal/configuration_update_params.rb', line 507

def ssid
  @ssid
end