1.7.41. 供应商丢弃 (向上)
1.7.41.1. 方法
1.7.41.1.1. name
返回您的组织名称。
Domain {{ provider.domain }}
{% if provider.multiple_applications_allowed? %}
<p>Applications</p>
<ul>
{% for app in account.applications %}
<li>{{ app.name }}</li>
{% endfor %}
</ul>
{% else %}
Application {{ account.applications.first.name }}
{% endif %}
For general questions contact us at {{ provider.support_email }},
for invoice or payment related questions contact us at {{ provider.finance_support_email }}1.7.41.1.2. payment_gateway
返回与您的组织关联的支付网关
1.7.41.1.3. domain
Developer Portal 域
1.7.41.1.4. timezone
返回您使用的时区。您可以在管理门户中更改您的时区。选择 Dashboard > Account Settings。在 Overview 页面中,向下滚动到 Account Details,单击 Edit 并修改 Time Zone 字段。
1.7.41.1.5. support_email
帐户的支持电子邮件
1.7.41.1.6. finance_support_email
帐户的财务支持电子邮件
1.7.41.1.7. telephone_number
返回帐户的电话号码
1.7.41.1.8. multiple_applications_allowed?
如果开发人员可以使用自己的密钥、stats 等更多独立的应用程序,则为 true。这取决于您的 3scale 计划。
{% if provider.multiple_applications_allowed? %}
<p>Applications</p>
<ul>
{% for app in account.applications %}
<li>{{ app.name }}</li>
{% endfor %}
</ul>
{% else %}
Application {{ account.applications.first.name }}
{% endif %}1.7.41.1.9. logo_url
返回徽标 url
1.7.41.1.10. multiple_services_allowed?
如果您的 3scale 计划允许您将多个 API 作为单独的服务进行管理,则为 True。
{% if provider.multiple_services_allowed? %}
{% for service in provider.services %}
Service {{ service.name }} is available.
{% endfor %}
{% endif %}1.7.41.1.11. finance_allowed?
1.7.41.1.12. multiple_users_allowed?
真(如果开发人员帐户可以关联多次登录)。这取决于您的 3scale 计划,且在管理门户的管理门户中是否在 Audience > Developer Portal > Feature Visibility 下打开了其可见性。
{% if provider.multiple_users_allowed? %}
<ul id="subsubmenu">
<li>
{{ 'Users' | link_to: urls.users }}
</li>
<li>
{{ 'Sent invitations' | link_to: urls.invitations }}
</li>
</ul>
{% endif %}1.7.41.1.13. account_plans
返回所有公布的帐户计划。
<p>We offer following account plans:</p>
<ul>
{% for plan in model.account_plans %}
<li>{{ plan.name }} </li>
{% endfor %}
</ul>1.7.41.1.14. services
返回所有定义的服务。
<p>You can signup to any of our services!</p>
<ul>
{% for service in provider.services %}
<li>{{ service.name }} <a href="/signup/service/{{ service.system_name }}">Signup!</a></li>
{% endfor %}1.7.41.1.15. signups_enabled?
您可以在 3scale 管理门户中启用或禁用 Audience > Accounts > Settings > Usage Rules> 中的签名。
1.7.41.1.16. account_management_enabled?
您可以在 3scale 管理门户中启用或禁用帐户管理,在 Audience > Accounts > Settings > Usage Rules& gt; 下。