Class: Fastlane::Helper::MsCredentials

Inherits:
Object
  • Object
show all
Defined in:
lib/fastlane/plugin/sapfire/helper/ms_credentials.rb

Instance Attribute Summary collapse

Instance Attribute Details

#client_idObject



21
22
23
24
# File 'lib/fastlane/plugin/sapfire/helper/ms_credentials.rb', line 21

def client_id
  check_value("client_id", @client_id)
  @client_id
end

#client_secretObject



26
27
28
29
# File 'lib/fastlane/plugin/sapfire/helper/ms_credentials.rb', line 26

def client_secret
  check_value("client_secret", @client_secret)
  @client_secret
end

#passwordObject



11
12
13
14
# File 'lib/fastlane/plugin/sapfire/helper/ms_credentials.rb', line 11

def password
  check_value("password", @password)
  @password
end

#tenant_idObject



16
17
18
19
# File 'lib/fastlane/plugin/sapfire/helper/ms_credentials.rb', line 16

def tenant_id
  check_value("tenant_id", @tenant_id)
  @tenant_id
end

#usernameObject



6
7
8
9
# File 'lib/fastlane/plugin/sapfire/helper/ms_credentials.rb', line 6

def username
  check_value("username", @username)
  @username
end