Skip to content

Commit

Permalink
Edit BatchSending envelopeTemplate (#278)
Browse files Browse the repository at this point in the history
Co-authored-by: David Kalianko <[email protected]>
  • Loading branch information
IamDejv and David Kalianko authored Nov 28, 2024
1 parent 56b67b5 commit 3c44a15
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
5 changes: 1 addition & 4 deletions src/Resource/BatchSending.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ class BatchSending extends BaseResource

public ?string $name;

/**
* @var array{id: string, title: ?string}|null
*/
public ?array $envelopeTemplate;
public ?EnvelopeTemplateInfo $envelopeTemplateInfo;

public ?UserInfo $owner;

Expand Down
12 changes: 12 additions & 0 deletions src/Resource/EnvelopeTemplateInfo.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

declare(strict_types=1);

namespace DigitalCz\DigiSign\Resource;

final class EnvelopeTemplateInfo extends BaseResource
{
public string $id;

public ?string $title;
}

0 comments on commit 3c44a15

Please sign in to comment.