| 9 | ) |
| 10 | |
| 11 | type FormAPI interface { |
| 12 | // Create a new form. |
| 13 | Create(ctx context.Context, r *management.Form, opts ...management.RequestOption) error |
| 14 | |
| 15 | // Read form details. |
| 16 | Read(ctx context.Context, id string, opts ...management.RequestOption) (r *management.Form, err error) |
| 17 | |
| 18 | // Update an existing action. |
| 19 | Update(ctx context.Context, id string, r *management.Form, opts ...management.RequestOption) error |
| 20 | |
| 21 | // Delete an action. |
| 22 | Delete(ctx context.Context, id string, opts ...management.RequestOption) error |
| 23 | |
| 24 | // List form. |
| 25 | List(ctx context.Context, opts ...management.RequestOption) (r *management.FormList, err error) |
| 26 | } |
nothing calls this directly
no outgoing calls
no test coverage detected