Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

session_entity_types_client_example_test.go 3.1 KiB

5 лет назад
5 лет назад
5 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. // Copyright 2019 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // https://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. // Code generated by gapic-generator. DO NOT EDIT.
  15. package dialogflow_test
  16. import (
  17. "context"
  18. dialogflow "cloud.google.com/go/dialogflow/apiv2"
  19. "google.golang.org/api/iterator"
  20. dialogflowpb "google.golang.org/genproto/googleapis/cloud/dialogflow/v2"
  21. )
  22. func ExampleNewSessionEntityTypesClient() {
  23. ctx := context.Background()
  24. c, err := dialogflow.NewSessionEntityTypesClient(ctx)
  25. if err != nil {
  26. // TODO: Handle error.
  27. }
  28. // TODO: Use client.
  29. _ = c
  30. }
  31. func ExampleSessionEntityTypesClient_ListSessionEntityTypes() {
  32. ctx := context.Background()
  33. c, err := dialogflow.NewSessionEntityTypesClient(ctx)
  34. if err != nil {
  35. // TODO: Handle error.
  36. }
  37. req := &dialogflowpb.ListSessionEntityTypesRequest{
  38. // TODO: Fill request struct fields.
  39. }
  40. it := c.ListSessionEntityTypes(ctx, req)
  41. for {
  42. resp, err := it.Next()
  43. if err == iterator.Done {
  44. break
  45. }
  46. if err != nil {
  47. // TODO: Handle error.
  48. }
  49. // TODO: Use resp.
  50. _ = resp
  51. }
  52. }
  53. func ExampleSessionEntityTypesClient_GetSessionEntityType() {
  54. ctx := context.Background()
  55. c, err := dialogflow.NewSessionEntityTypesClient(ctx)
  56. if err != nil {
  57. // TODO: Handle error.
  58. }
  59. req := &dialogflowpb.GetSessionEntityTypeRequest{
  60. // TODO: Fill request struct fields.
  61. }
  62. resp, err := c.GetSessionEntityType(ctx, req)
  63. if err != nil {
  64. // TODO: Handle error.
  65. }
  66. // TODO: Use resp.
  67. _ = resp
  68. }
  69. func ExampleSessionEntityTypesClient_CreateSessionEntityType() {
  70. ctx := context.Background()
  71. c, err := dialogflow.NewSessionEntityTypesClient(ctx)
  72. if err != nil {
  73. // TODO: Handle error.
  74. }
  75. req := &dialogflowpb.CreateSessionEntityTypeRequest{
  76. // TODO: Fill request struct fields.
  77. }
  78. resp, err := c.CreateSessionEntityType(ctx, req)
  79. if err != nil {
  80. // TODO: Handle error.
  81. }
  82. // TODO: Use resp.
  83. _ = resp
  84. }
  85. func ExampleSessionEntityTypesClient_UpdateSessionEntityType() {
  86. ctx := context.Background()
  87. c, err := dialogflow.NewSessionEntityTypesClient(ctx)
  88. if err != nil {
  89. // TODO: Handle error.
  90. }
  91. req := &dialogflowpb.UpdateSessionEntityTypeRequest{
  92. // TODO: Fill request struct fields.
  93. }
  94. resp, err := c.UpdateSessionEntityType(ctx, req)
  95. if err != nil {
  96. // TODO: Handle error.
  97. }
  98. // TODO: Use resp.
  99. _ = resp
  100. }
  101. func ExampleSessionEntityTypesClient_DeleteSessionEntityType() {
  102. ctx := context.Background()
  103. c, err := dialogflow.NewSessionEntityTypesClient(ctx)
  104. if err != nil {
  105. // TODO: Handle error.
  106. }
  107. req := &dialogflowpb.DeleteSessionEntityTypeRequest{
  108. // TODO: Fill request struct fields.
  109. }
  110. err = c.DeleteSessionEntityType(ctx, req)
  111. if err != nil {
  112. // TODO: Handle error.
  113. }
  114. }