GitHubEnterpriseSecrets.fromJson constructor

GitHubEnterpriseSecrets.fromJson(
  1. Map json_
)

Implementation

GitHubEnterpriseSecrets.fromJson(core.Map json_)
    : this(
        oauthClientIdName: json_['oauthClientIdName'] as core.String?,
        oauthClientIdVersionName:
            json_['oauthClientIdVersionName'] as core.String?,
        oauthSecretName: json_['oauthSecretName'] as core.String?,
        oauthSecretVersionName:
            json_['oauthSecretVersionName'] as core.String?,
        privateKeyName: json_['privateKeyName'] as core.String?,
        privateKeyVersionName: json_['privateKeyVersionName'] as core.String?,
        webhookSecretName: json_['webhookSecretName'] as core.String?,
        webhookSecretVersionName:
            json_['webhookSecretVersionName'] as core.String?,
      );