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
개발자 포털 도메인
1.7.41.1.4. 시간대
사용하는 시간대를 반환합니다. 관리 포털에서 시간대를 변경할 수 있습니다. 대시보드 > 계정 설정을 선택합니다. Overview (개요) 페이지에서 Account Details (계정 세부 정보)까지 아래로 스크롤하고 Edit(편집 )를 클릭하고 Time Zone(시간 영역 ) 필드를 수정합니다.
1.7.41.1.5. 지원_이메일
계정의 이메일 지원
1.7.41.1.6. finance_support_email
계정의 재무 지원 이메일
1.7.41.1.7. telephone_number
계정의 전화 번호를 반환합니다
1.7.41.1.8. multiple_applications_allowed?
개발자가 자신의 키, 통계 등을 사용하여 더 많은 개별 애플리케이션을 가질 수 있는 경우. 이는 사용자의 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?
개발자 계정에 여러 로그인이 연결될 수 있는 경우 True입니다. 이는 3scale 계획에 따라 달라지며 대상 > 개발자 포털 > 기능 가시성 아래 관리 포털에서 개발자 포털에 대한 가시성 이 설정되어 있는 경우.
{% 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?
Audience > Accounts > Settings > Usage Rules > 아래의 3scale 관리 포털에서 signups를 활성화하거나 비활성화할 수 있습니다.
1.7.41.1.16. account_management_enabled?
Audience > Accounts > Settings > Usage Rules > 아래의 3scale 관리 포털에서 계정 관리를 활성화하거나 비활성화할 수 있습니다.